/Volumes/compiler/apple/swift/include/swift/AST/RequestCache.h
Line | Count | Source (jump to first uncovered line) |
1 | | //===--- RequestCache.h - Per-request caching ----------------- -*- C++ -*-===// |
2 | | // |
3 | | // This source file is part of the Swift.org open source project |
4 | | // |
5 | | // Copyright (c) 2014 - 2020 Apple Inc. and the Swift project authors |
6 | | // Licensed under Apache License v2.0 with Runtime Library Exception |
7 | | // |
8 | | // See https://swift.org/LICENSE.txt for license information |
9 | | // See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors |
10 | | // |
11 | | //===----------------------------------------------------------------------===// |
12 | | // |
13 | | // This file defines data structures to efficiently support the request |
14 | | // evaluator's per-request caching and dependency tracking maps. |
15 | | // |
16 | | //===----------------------------------------------------------------------===// |
17 | | |
18 | | #include "swift/AST/DependencyCollector.h" |
19 | | #include "llvm/ADT/DenseMap.h" |
20 | | #include "llvm/ADT/StringRef.h" |
21 | | |
22 | | #ifndef SWIFT_AST_REQUEST_CACHE_H |
23 | | #define SWIFT_AST_REQUEST_CACHE_H |
24 | | |
25 | | namespace swift { |
26 | | |
27 | | namespace evaluator { |
28 | | |
29 | | namespace detail { |
30 | | |
31 | | // Remove this when the compiler bumps to C++17. |
32 | | template <typename...> using void_t = void; |
33 | | template<typename T, typename = void_t<>> |
34 | | |
35 | | struct TupleHasDenseMapInfo {}; |
36 | | |
37 | | template <typename... Ts> |
38 | | struct TupleHasDenseMapInfo< |
39 | | std::tuple<Ts...>, |
40 | | void_t<decltype(llvm::DenseMapInfo<Ts>::getEmptyKey)...>> { |
41 | | using type = void_t<>; |
42 | | }; |
43 | | |
44 | | } // end namespace detail |
45 | | |
46 | | namespace { |
47 | | |
48 | | /// Wrapper for a request with additional empty and tombstone states. |
49 | | template<typename Request, typename = detail::void_t<>> |
50 | | class RequestKey { |
51 | | friend struct llvm::DenseMapInfo<RequestKey>; |
52 | | union { |
53 | | char Empty; |
54 | | Request Req; |
55 | | }; |
56 | | |
57 | | enum class StorageKind : uint8_t { |
58 | | Normal, Empty, Tombstone |
59 | | }; |
60 | | StorageKind Kind; |
61 | | |
62 | 43.5M | static RequestKey getEmpty() { |
63 | 43.5M | return RequestKey(StorageKind::Empty); |
64 | 43.5M | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18OptimizedIRRequestEvE8getEmptyEv Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvE8getEmptyEv ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvE8getEmptyEv Line | Count | Source | 62 | 50.9k | static RequestKey getEmpty() { | 63 | 50.9k | return RequestKey(StorageKind::Empty); | 64 | 50.9k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvE8getEmptyEv Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvE8getEmptyEv Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE8getEmptyEv Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvE8getEmptyEv Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvE8getEmptyEv IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvE8getEmptyEv Line | Count | Source | 62 | 245 | static RequestKey getEmpty() { | 63 | 245 | return RequestKey(StorageKind::Empty); | 64 | 245 | } |
Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17LoweredSILRequestEvE8getEmptyEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20PublicSymbolsRequestEvE8getEmptyEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18GenerateTBDRequestEvE8getEmptyEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13APIGenRequestEvE8getEmptyEv SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvE8getEmptyEv Line | Count | Source | 62 | 390 | static RequestKey getEmpty() { | 63 | 390 | return RequestKey(StorageKind::Empty); | 64 | 390 | } |
Unexecuted instantiation: SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParseSILModuleRequestEvE8getEmptyEv Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.22k | static RequestKey getEmpty() { | 63 | 1.22k | return RequestKey(StorageKind::Empty); | 64 | 1.22k | } |
Unexecuted instantiation: PassManager.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExecuteSILPipelineRequestEvE8getEmptyEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvE8getEmptyEv Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvE8getEmptyEv Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvE8getEmptyEv Unexecuted instantiation: ParseSIL.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE8getEmptyEv Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvE8getEmptyEv Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvE8getEmptyEv CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvE8getEmptyEv Line | Count | Source | 62 | 88.0k | static RequestKey getEmpty() { | 63 | 88.0k | return RequestKey(StorageKind::Empty); | 64 | 88.0k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvE8getEmptyEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvE8getEmptyEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE8getEmptyEv CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvE8getEmptyEv Line | Count | Source | 62 | 18.9k | static RequestKey getEmpty() { | 63 | 18.9k | return RequestKey(StorageKind::Empty); | 64 | 18.9k | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18CxxRecordSemanticsEvE8getEmptyEv CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvE8getEmptyEv Line | Count | Source | 62 | 7.81k | static RequestKey getEmpty() { | 63 | 7.81k | return RequestKey(StorageKind::Empty); | 64 | 7.81k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.80k | static RequestKey getEmpty() { | 63 | 2.80k | return RequestKey(StorageKind::Empty); | 64 | 2.80k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvE8getEmptyEv ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.56k | static RequestKey getEmpty() { | 63 | 2.56k | return RequestKey(StorageKind::Empty); | 64 | 2.56k | } |
DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.05k | static RequestKey getEmpty() { | 63 | 1.05k | return RequestKey(StorageKind::Empty); | 64 | 1.05k | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvE8getEmptyEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE8getEmptyEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvE8getEmptyEv Unexecuted instantiation: MiscDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE8getEmptyEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsCCompatibleFuncDeclRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasIsolatedSelfRequestEvE8getEmptyEv TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvE8getEmptyEv Line | Count | Source | 62 | 52 | static RequestKey getEmpty() { | 63 | 52 | return RequestKey(StorageKind::Empty); | 64 | 52 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvE8getEmptyEv TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvE8getEmptyEv Line | Count | Source | 62 | 16.0k | static RequestKey getEmpty() { | 63 | 16.0k | return RequestKey(StorageKind::Empty); | 64 | 16.0k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE8getEmptyEv TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvE8getEmptyEv Line | Count | Source | 62 | 37.4k | static RequestKey getEmpty() { | 63 | 37.4k | return RequestKey(StorageKind::Empty); | 64 | 37.4k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvE8getEmptyEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvE8getEmptyEv Line | Count | Source | 62 | 13.5k | static RequestKey getEmpty() { | 63 | 13.5k | return RequestKey(StorageKind::Empty); | 64 | 13.5k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE8getEmptyEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvE8getEmptyEv Line | Count | Source | 62 | 827k | static RequestKey getEmpty() { | 63 | 827k | return RequestKey(StorageKind::Empty); | 64 | 827k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvE8getEmptyEv TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 163k | static RequestKey getEmpty() { | 63 | 163k | return RequestKey(StorageKind::Empty); | 64 | 163k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvE8getEmptyEv TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvE8getEmptyEv Line | Count | Source | 62 | 40 | static RequestKey getEmpty() { | 63 | 40 | return RequestKey(StorageKind::Empty); | 64 | 40 | } |
TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvE8getEmptyEv Line | Count | Source | 62 | 24 | static RequestKey getEmpty() { | 63 | 24 | return RequestKey(StorageKind::Empty); | 64 | 24 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE8getEmptyEv TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 105k | static RequestKey getEmpty() { | 63 | 105k | return RequestKey(StorageKind::Empty); | 64 | 105k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvE8getEmptyEv TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.59k | static RequestKey getEmpty() { | 63 | 1.59k | return RequestKey(StorageKind::Empty); | 64 | 1.59k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE8getEmptyEv Line | Count | Source | 62 | 5.74k | static RequestKey getEmpty() { | 63 | 5.74k | return RequestKey(StorageKind::Empty); | 64 | 5.74k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 56 | static RequestKey getEmpty() { | 63 | 56 | return RequestKey(StorageKind::Empty); | 64 | 56 | } |
TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvE8getEmptyEv Line | Count | Source | 62 | 83.7k | static RequestKey getEmpty() { | 63 | 83.7k | return RequestKey(StorageKind::Empty); | 64 | 83.7k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27PreCheckFunctionBodyRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvE8getEmptyEv TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvE8getEmptyEv Line | Count | Source | 62 | 304 | static RequestKey getEmpty() { | 63 | 304 | return RequestKey(StorageKind::Empty); | 64 | 304 | } |
TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvE8getEmptyEv Line | Count | Source | 62 | 118k | static RequestKey getEmpty() { | 63 | 118k | return RequestKey(StorageKind::Empty); | 64 | 118k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ResolveTypeRequestEvE8getEmptyEv TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvE8getEmptyEv Line | Count | Source | 62 | 415 | static RequestKey getEmpty() { | 63 | 415 | return RequestKey(StorageKind::Empty); | 64 | 415 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.58k | static RequestKey getEmpty() { | 63 | 1.58k | return RequestKey(StorageKind::Empty); | 64 | 1.58k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.98k | static RequestKey getEmpty() { | 63 | 2.98k | return RequestKey(StorageKind::Empty); | 64 | 2.98k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvE8getEmptyEv Line | Count | Source | 62 | 2.98k | static RequestKey getEmpty() { | 63 | 2.98k | return RequestKey(StorageKind::Empty); | 64 | 2.98k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.58k | static RequestKey getEmpty() { | 63 | 1.58k | return RequestKey(StorageKind::Empty); | 64 | 1.58k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE8getEmptyEv Line | Count | Source | 62 | 33.6k | static RequestKey getEmpty() { | 63 | 33.6k | return RequestKey(StorageKind::Empty); | 64 | 33.6k | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckASTNodeAtLocRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE8getEmptyEv Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvE8getEmptyEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE8getEmptyEv Line | Count | Source | 62 | 323k | static RequestKey getEmpty() { | 63 | 323k | return RequestKey(StorageKind::Empty); | 64 | 323k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvE8getEmptyEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ClangDirectLookupRequestEvE8getEmptyEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvE8getEmptyEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ClangCategoryLookupRequestEvE8getEmptyEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE8getEmptyEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE8getEmptyEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE8getEmptyEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18CxxRecordSemanticsEvE8getEmptyEv Unexecuted instantiation: ImportName.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsSafeUseOfCxxDeclEvE8getEmptyEv Unexecuted instantiation: ImportType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20CxxRecordAsSwiftTypeEvE8getEmptyEv Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE8getEmptyEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvE8getEmptyEv Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE8getEmptyEv Line | Count | Source | 62 | 145 | static RequestKey getEmpty() { | 63 | 145 | return RequestKey(StorageKind::Empty); | 64 | 145 | } |
Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvE8getEmptyEv Unexecuted instantiation: AccessRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31TypeDeclsFromWhereClauseRequestEvE8getEmptyEv ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 320k | static RequestKey getEmpty() { | 63 | 320k | return RequestKey(StorageKind::Empty); | 64 | 320k | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvE8getEmptyEv Line | Count | Source | 62 | 16 | static RequestKey getEmpty() { | 63 | 16 | return RequestKey(StorageKind::Empty); | 64 | 16 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvE8getEmptyEv Line | Count | Source | 62 | 16 | static RequestKey getEmpty() { | 63 | 16 | return RequestKey(StorageKind::Empty); | 64 | 16 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvE8getEmptyEv ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvE8getEmptyEv Line | Count | Source | 62 | 16 | static RequestKey getEmpty() { | 63 | 16 | return RequestKey(StorageKind::Empty); | 64 | 16 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvE8getEmptyEv Line | Count | Source | 62 | 21 | static RequestKey getEmpty() { | 63 | 21 | return RequestKey(StorageKind::Empty); | 64 | 21 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasIsolatedSelfRequestEvE8getEmptyEv Unexecuted instantiation: ASTPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ClangDirectLookupRequestEvE8getEmptyEv Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE8getEmptyEv Line | Count | Source | 62 | 92 | static RequestKey getEmpty() { | 63 | 92 | return RequestKey(StorageKind::Empty); | 64 | 92 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvE8getEmptyEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvE8getEmptyEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvE8getEmptyEv Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvE8getEmptyEv Line | Count | Source | 62 | 6.09k | static RequestKey getEmpty() { | 63 | 6.09k | return RequestKey(StorageKind::Empty); | 64 | 6.09k | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvE8getEmptyEv Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvE8getEmptyEv Line | Count | Source | 62 | 3.29k | static RequestKey getEmpty() { | 63 | 3.29k | return RequestKey(StorageKind::Empty); | 64 | 3.29k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvE8getEmptyEv Line | Count | Source | 62 | 5.35k | static RequestKey getEmpty() { | 63 | 5.35k | return RequestKey(StorageKind::Empty); | 64 | 5.35k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.10k | static RequestKey getEmpty() { | 63 | 1.10k | return RequestKey(StorageKind::Empty); | 64 | 1.10k | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvE8getEmptyEv Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.63k | static RequestKey getEmpty() { | 63 | 2.63k | return RequestKey(StorageKind::Empty); | 64 | 2.63k | } |
Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvE8getEmptyEv Line | Count | Source | 62 | 477k | static RequestKey getEmpty() { | 63 | 477k | return RequestKey(StorageKind::Empty); | 64 | 477k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvE8getEmptyEv Line | Count | Source | 62 | 3.01M | static RequestKey getEmpty() { | 63 | 3.01M | return RequestKey(StorageKind::Empty); | 64 | 3.01M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.16M | static RequestKey getEmpty() { | 63 | 1.16M | return RequestKey(StorageKind::Empty); | 64 | 1.16M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.32k | static RequestKey getEmpty() { | 63 | 1.32k | return RequestKey(StorageKind::Empty); | 64 | 1.32k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE8getEmptyEv Line | Count | Source | 62 | 3.79M | static RequestKey getEmpty() { | 63 | 3.79M | return RequestKey(StorageKind::Empty); | 64 | 3.79M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvE8getEmptyEv Line | Count | Source | 62 | 127 | static RequestKey getEmpty() { | 63 | 127 | return RequestKey(StorageKind::Empty); | 64 | 127 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvE8getEmptyEv Line | Count | Source | 62 | 657k | static RequestKey getEmpty() { | 63 | 657k | return RequestKey(StorageKind::Empty); | 64 | 657k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvE8getEmptyEv Line | Count | Source | 62 | 327 | static RequestKey getEmpty() { | 63 | 327 | return RequestKey(StorageKind::Empty); | 64 | 327 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvE8getEmptyEv Line | Count | Source | 62 | 14 | static RequestKey getEmpty() { | 63 | 14 | return RequestKey(StorageKind::Empty); | 64 | 14 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 33.6k | static RequestKey getEmpty() { | 63 | 33.6k | return RequestKey(StorageKind::Empty); | 64 | 33.6k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.57k | static RequestKey getEmpty() { | 63 | 1.57k | return RequestKey(StorageKind::Empty); | 64 | 1.57k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.12k | static RequestKey getEmpty() { | 63 | 1.12k | return RequestKey(StorageKind::Empty); | 64 | 1.12k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.23k | static RequestKey getEmpty() { | 63 | 1.23k | return RequestKey(StorageKind::Empty); | 64 | 1.23k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.29k | static RequestKey getEmpty() { | 63 | 1.29k | return RequestKey(StorageKind::Empty); | 64 | 1.29k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvE8getEmptyEv Line | Count | Source | 62 | 32.8k | static RequestKey getEmpty() { | 63 | 32.8k | return RequestKey(StorageKind::Empty); | 64 | 32.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.73k | static RequestKey getEmpty() { | 63 | 1.73k | return RequestKey(StorageKind::Empty); | 64 | 1.73k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.91k | static RequestKey getEmpty() { | 63 | 1.91k | return RequestKey(StorageKind::Empty); | 64 | 1.91k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvE8getEmptyEv Line | Count | Source | 62 | 5.00k | static RequestKey getEmpty() { | 63 | 5.00k | return RequestKey(StorageKind::Empty); | 64 | 5.00k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE8getEmptyEv Line | Count | Source | 62 | 64.1k | static RequestKey getEmpty() { | 63 | 64.1k | return RequestKey(StorageKind::Empty); | 64 | 64.1k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvE8getEmptyEv Line | Count | Source | 62 | 70.3k | static RequestKey getEmpty() { | 63 | 70.3k | return RequestKey(StorageKind::Empty); | 64 | 70.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 26 | static RequestKey getEmpty() { | 63 | 26 | return RequestKey(StorageKind::Empty); | 64 | 26 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvE8getEmptyEv Line | Count | Source | 62 | 119k | static RequestKey getEmpty() { | 63 | 119k | return RequestKey(StorageKind::Empty); | 64 | 119k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvE8getEmptyEv Line | Count | Source | 62 | 427 | static RequestKey getEmpty() { | 63 | 427 | return RequestKey(StorageKind::Empty); | 64 | 427 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsEscapableRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvE8getEmptyEv Line | Count | Source | 62 | 4.93k | static RequestKey getEmpty() { | 63 | 4.93k | return RequestKey(StorageKind::Empty); | 64 | 4.93k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvE8getEmptyEv Line | Count | Source | 62 | 715k | static RequestKey getEmpty() { | 63 | 715k | return RequestKey(StorageKind::Empty); | 64 | 715k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 5.31M | static RequestKey getEmpty() { | 63 | 5.31M | return RequestKey(StorageKind::Empty); | 64 | 5.31M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvE8getEmptyEv Line | Count | Source | 62 | 102k | static RequestKey getEmpty() { | 63 | 102k | return RequestKey(StorageKind::Empty); | 64 | 102k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvE8getEmptyEv Line | Count | Source | 62 | 5.97M | static RequestKey getEmpty() { | 63 | 5.97M | return RequestKey(StorageKind::Empty); | 64 | 5.97M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvE8getEmptyEv Line | Count | Source | 62 | 6.32k | static RequestKey getEmpty() { | 63 | 6.32k | return RequestKey(StorageKind::Empty); | 64 | 6.32k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvE8getEmptyEv Line | Count | Source | 62 | 4.99k | static RequestKey getEmpty() { | 63 | 4.99k | return RequestKey(StorageKind::Empty); | 64 | 4.99k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvE8getEmptyEv Line | Count | Source | 62 | 7.24k | static RequestKey getEmpty() { | 63 | 7.24k | return RequestKey(StorageKind::Empty); | 64 | 7.24k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.82k | static RequestKey getEmpty() { | 63 | 1.82k | return RequestKey(StorageKind::Empty); | 64 | 1.82k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.60M | static RequestKey getEmpty() { | 63 | 1.60M | return RequestKey(StorageKind::Empty); | 64 | 1.60M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvE8getEmptyEv Line | Count | Source | 62 | 478k | static RequestKey getEmpty() { | 63 | 478k | return RequestKey(StorageKind::Empty); | 64 | 478k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.38k | static RequestKey getEmpty() { | 63 | 2.38k | return RequestKey(StorageKind::Empty); | 64 | 2.38k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 90.8k | static RequestKey getEmpty() { | 63 | 90.8k | return RequestKey(StorageKind::Empty); | 64 | 90.8k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 31.4k | static RequestKey getEmpty() { | 63 | 31.4k | return RequestKey(StorageKind::Empty); | 64 | 31.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvE8getEmptyEv Line | Count | Source | 62 | 5.68k | static RequestKey getEmpty() { | 63 | 5.68k | return RequestKey(StorageKind::Empty); | 64 | 5.68k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.60k | static RequestKey getEmpty() { | 63 | 2.60k | return RequestKey(StorageKind::Empty); | 64 | 2.60k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvE8getEmptyEv Line | Count | Source | 62 | 3.33k | static RequestKey getEmpty() { | 63 | 3.33k | return RequestKey(StorageKind::Empty); | 64 | 3.33k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvE8getEmptyEv Line | Count | Source | 62 | 6.09k | static RequestKey getEmpty() { | 63 | 6.09k | return RequestKey(StorageKind::Empty); | 64 | 6.09k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.07k | static RequestKey getEmpty() { | 63 | 1.07k | return RequestKey(StorageKind::Empty); | 64 | 1.07k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvE8getEmptyEv Line | Count | Source | 62 | 169 | static RequestKey getEmpty() { | 63 | 169 | return RequestKey(StorageKind::Empty); | 64 | 169 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvE8getEmptyEv Line | Count | Source | 62 | 4.94k | static RequestKey getEmpty() { | 63 | 4.94k | return RequestKey(StorageKind::Empty); | 64 | 4.94k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvE8getEmptyEv Line | Count | Source | 62 | 8 | static RequestKey getEmpty() { | 63 | 8 | return RequestKey(StorageKind::Empty); | 64 | 8 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvE8getEmptyEv Line | Count | Source | 62 | 52 | static RequestKey getEmpty() { | 63 | 52 | return RequestKey(StorageKind::Empty); | 64 | 52 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvE8getEmptyEv Line | Count | Source | 62 | 17.8k | static RequestKey getEmpty() { | 63 | 17.8k | return RequestKey(StorageKind::Empty); | 64 | 17.8k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.29k | static RequestKey getEmpty() { | 63 | 2.29k | return RequestKey(StorageKind::Empty); | 64 | 2.29k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.40k | static RequestKey getEmpty() { | 63 | 1.40k | return RequestKey(StorageKind::Empty); | 64 | 1.40k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.37k | static RequestKey getEmpty() { | 63 | 1.37k | return RequestKey(StorageKind::Empty); | 64 | 1.37k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.10k | static RequestKey getEmpty() { | 63 | 1.10k | return RequestKey(StorageKind::Empty); | 64 | 1.10k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvE8getEmptyEv Line | Count | Source | 62 | 41 | static RequestKey getEmpty() { | 63 | 41 | return RequestKey(StorageKind::Empty); | 64 | 41 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvE8getEmptyEv Line | Count | Source | 62 | 4 | static RequestKey getEmpty() { | 63 | 4 | return RequestKey(StorageKind::Empty); | 64 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvE8getEmptyEv Line | Count | Source | 62 | 7.26k | static RequestKey getEmpty() { | 63 | 7.26k | return RequestKey(StorageKind::Empty); | 64 | 7.26k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.92k | static RequestKey getEmpty() { | 63 | 1.92k | return RequestKey(StorageKind::Empty); | 64 | 1.92k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.46k | static RequestKey getEmpty() { | 63 | 1.46k | return RequestKey(StorageKind::Empty); | 64 | 1.46k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvE8getEmptyEv Line | Count | Source | 62 | 171k | static RequestKey getEmpty() { | 63 | 171k | return RequestKey(StorageKind::Empty); | 64 | 171k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvE8getEmptyEv Line | Count | Source | 62 | 8.53k | static RequestKey getEmpty() { | 63 | 8.53k | return RequestKey(StorageKind::Empty); | 64 | 8.53k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.75k | static RequestKey getEmpty() { | 63 | 1.75k | return RequestKey(StorageKind::Empty); | 64 | 1.75k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.14M | static RequestKey getEmpty() { | 63 | 1.14M | return RequestKey(StorageKind::Empty); | 64 | 1.14M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvE8getEmptyEv Line | Count | Source | 62 | 8.47k | static RequestKey getEmpty() { | 63 | 8.47k | return RequestKey(StorageKind::Empty); | 64 | 8.47k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvE8getEmptyEv Line | Count | Source | 62 | 434k | static RequestKey getEmpty() { | 63 | 434k | return RequestKey(StorageKind::Empty); | 64 | 434k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvE8getEmptyEv Line | Count | Source | 62 | 991k | static RequestKey getEmpty() { | 63 | 991k | return RequestKey(StorageKind::Empty); | 64 | 991k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.20k | static RequestKey getEmpty() { | 63 | 1.20k | return RequestKey(StorageKind::Empty); | 64 | 1.20k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvE8getEmptyEv Line | Count | Source | 62 | 16.8k | static RequestKey getEmpty() { | 63 | 16.8k | return RequestKey(StorageKind::Empty); | 64 | 16.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvE8getEmptyEv Line | Count | Source | 62 | 3.82M | static RequestKey getEmpty() { | 63 | 3.82M | return RequestKey(StorageKind::Empty); | 64 | 3.82M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 4.29k | static RequestKey getEmpty() { | 63 | 4.29k | return RequestKey(StorageKind::Empty); | 64 | 4.29k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 4.29k | static RequestKey getEmpty() { | 63 | 4.29k | return RequestKey(StorageKind::Empty); | 64 | 4.29k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE8getEmptyEv Line | Count | Source | 62 | 306k | static RequestKey getEmpty() { | 63 | 306k | return RequestKey(StorageKind::Empty); | 64 | 306k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvE8getEmptyEv Line | Count | Source | 62 | 90.7k | static RequestKey getEmpty() { | 63 | 90.7k | return RequestKey(StorageKind::Empty); | 64 | 90.7k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvE8getEmptyEv Line | Count | Source | 62 | 122k | static RequestKey getEmpty() { | 63 | 122k | return RequestKey(StorageKind::Empty); | 64 | 122k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvE8getEmptyEv Line | Count | Source | 62 | 30 | static RequestKey getEmpty() { | 63 | 30 | return RequestKey(StorageKind::Empty); | 64 | 30 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvE8getEmptyEv Line | Count | Source | 62 | 118 | static RequestKey getEmpty() { | 63 | 118 | return RequestKey(StorageKind::Empty); | 64 | 118 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 94.5k | static RequestKey getEmpty() { | 63 | 94.5k | return RequestKey(StorageKind::Empty); | 64 | 94.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvE8getEmptyEv Line | Count | Source | 62 | 312k | static RequestKey getEmpty() { | 63 | 312k | return RequestKey(StorageKind::Empty); | 64 | 312k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 183k | static RequestKey getEmpty() { | 63 | 183k | return RequestKey(StorageKind::Empty); | 64 | 183k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.00k | static RequestKey getEmpty() { | 63 | 2.00k | return RequestKey(StorageKind::Empty); | 64 | 2.00k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvE8getEmptyEv Line | Count | Source | 62 | 190k | static RequestKey getEmpty() { | 63 | 190k | return RequestKey(StorageKind::Empty); | 64 | 190k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvE8getEmptyEv Line | Count | Source | 62 | 12.1k | static RequestKey getEmpty() { | 63 | 12.1k | return RequestKey(StorageKind::Empty); | 64 | 12.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvE8getEmptyEv Line | Count | Source | 62 | 4.74k | static RequestKey getEmpty() { | 63 | 4.74k | return RequestKey(StorageKind::Empty); | 64 | 4.74k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvE8getEmptyEv Line | Count | Source | 62 | 219k | static RequestKey getEmpty() { | 63 | 219k | return RequestKey(StorageKind::Empty); | 64 | 219k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE8getEmptyEv Line | Count | Source | 62 | 161k | static RequestKey getEmpty() { | 63 | 161k | return RequestKey(StorageKind::Empty); | 64 | 161k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvE8getEmptyEv Line | Count | Source | 62 | 9.32k | static RequestKey getEmpty() { | 63 | 9.32k | return RequestKey(StorageKind::Empty); | 64 | 9.32k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvE8getEmptyEv Line | Count | Source | 62 | 17.3k | static RequestKey getEmpty() { | 63 | 17.3k | return RequestKey(StorageKind::Empty); | 64 | 17.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.27M | static RequestKey getEmpty() { | 63 | 2.27M | return RequestKey(StorageKind::Empty); | 64 | 2.27M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvE8getEmptyEv Line | Count | Source | 62 | 43 | static RequestKey getEmpty() { | 63 | 43 | return RequestKey(StorageKind::Empty); | 64 | 43 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvE8getEmptyEv DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvE8getEmptyEv Line | Count | Source | 62 | 481k | static RequestKey getEmpty() { | 63 | 481k | return RequestKey(StorageKind::Empty); | 64 | 481k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE8getEmptyEv Line | Count | Source | 62 | 339k | static RequestKey getEmpty() { | 63 | 339k | return RequestKey(StorageKind::Empty); | 64 | 339k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvE8getEmptyEv Line | Count | Source | 62 | 40.6k | static RequestKey getEmpty() { | 63 | 40.6k | return RequestKey(StorageKind::Empty); | 64 | 40.6k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvE8getEmptyEv Line | Count | Source | 62 | 38.0k | static RequestKey getEmpty() { | 63 | 38.0k | return RequestKey(StorageKind::Empty); | 64 | 38.0k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvE8getEmptyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvE8getEmptyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvE8getEmptyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvE8getEmptyEv DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvE8getEmptyEv Line | Count | Source | 62 | 28 | static RequestKey getEmpty() { | 63 | 28 | return RequestKey(StorageKind::Empty); | 64 | 28 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvE8getEmptyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvE8getEmptyEv DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvE8getEmptyEv Line | Count | Source | 62 | 40 | static RequestKey getEmpty() { | 63 | 40 | return RequestKey(StorageKind::Empty); | 64 | 40 | } |
DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvE8getEmptyEv Line | Count | Source | 62 | 7.80k | static RequestKey getEmpty() { | 63 | 7.80k | return RequestKey(StorageKind::Empty); | 64 | 7.80k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvE8getEmptyEv Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvE8getEmptyEv Line | Count | Source | 62 | 221k | static RequestKey getEmpty() { | 63 | 221k | return RequestKey(StorageKind::Empty); | 64 | 221k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvE8getEmptyEv Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvE8getEmptyEv Line | Count | Source | 62 | 7.21k | static RequestKey getEmpty() { | 63 | 7.21k | return RequestKey(StorageKind::Empty); | 64 | 7.21k | } |
Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE8getEmptyEv Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvE8getEmptyEv Line | Count | Source | 62 | 728k | static RequestKey getEmpty() { | 63 | 728k | return RequestKey(StorageKind::Empty); | 64 | 728k | } |
GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvE8getEmptyEv Line | Count | Source | 62 | 34.7k | static RequestKey getEmpty() { | 63 | 34.7k | return RequestKey(StorageKind::Empty); | 64 | 34.7k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvE8getEmptyEv Line | Count | Source | 62 | 65 | static RequestKey getEmpty() { | 63 | 65 | return RequestKey(StorageKind::Empty); | 64 | 65 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.65k | static RequestKey getEmpty() { | 63 | 1.65k | return RequestKey(StorageKind::Empty); | 64 | 1.65k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.30k | static RequestKey getEmpty() { | 63 | 1.30k | return RequestKey(StorageKind::Empty); | 64 | 1.30k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvE8getEmptyEv Line | Count | Source | 62 | 30 | static RequestKey getEmpty() { | 63 | 30 | return RequestKey(StorageKind::Empty); | 64 | 30 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE8getEmptyEv Line | Count | Source | 62 | 1.21M | static RequestKey getEmpty() { | 63 | 1.21M | return RequestKey(StorageKind::Empty); | 64 | 1.21M | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39ImplicitKnownProtocolConformanceRequestEvE8getEmptyEv Line | Count | Source | 62 | 34.3k | static RequestKey getEmpty() { | 63 | 34.3k | return RequestKey(StorageKind::Empty); | 64 | 34.3k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvE8getEmptyEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvE8getEmptyEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvE8getEmptyEv Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.07M | static RequestKey getEmpty() { | 63 | 2.07M | return RequestKey(StorageKind::Empty); | 64 | 2.07M | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvE8getEmptyEv Line | Count | Source | 62 | 984 | static RequestKey getEmpty() { | 63 | 984 | return RequestKey(StorageKind::Empty); | 64 | 984 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvE8getEmptyEv Line | Count | Source | 62 | 38.2k | static RequestKey getEmpty() { | 63 | 38.2k | return RequestKey(StorageKind::Empty); | 64 | 38.2k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.10k | static RequestKey getEmpty() { | 63 | 2.10k | return RequestKey(StorageKind::Empty); | 64 | 2.10k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvE8getEmptyEv Line | Count | Source | 62 | 5.55k | static RequestKey getEmpty() { | 63 | 5.55k | return RequestKey(StorageKind::Empty); | 64 | 5.55k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32LookupConformanceInModuleRequestEvE8getEmptyEv Unexecuted instantiation: ModuleNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21LookupInModuleRequestEvE8getEmptyEv NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE8getEmptyEv Line | Count | Source | 62 | 43.7k | static RequestKey getEmpty() { | 63 | 43.7k | return RequestKey(StorageKind::Empty); | 64 | 43.7k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE8getEmptyEv NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvE8getEmptyEv Line | Count | Source | 62 | 333k | static RequestKey getEmpty() { | 63 | 333k | return RequestKey(StorageKind::Empty); | 64 | 333k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvE8getEmptyEv Line | Count | Source | 62 | 37.3k | static RequestKey getEmpty() { | 63 | 37.3k | return RequestKey(StorageKind::Empty); | 64 | 37.3k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvE8getEmptyEv Line | Count | Source | 62 | 366 | static RequestKey getEmpty() { | 63 | 366 | return RequestKey(StorageKind::Empty); | 64 | 366 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvE8getEmptyEv Line | Count | Source | 62 | 67.0k | static RequestKey getEmpty() { | 63 | 67.0k | return RequestKey(StorageKind::Empty); | 64 | 67.0k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvE8getEmptyEv Line | Count | Source | 62 | 565 | static RequestKey getEmpty() { | 63 | 565 | return RequestKey(StorageKind::Empty); | 64 | 565 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32SelfBoundsFromWhereClauseRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37SelfBoundsFromGenericSignatureRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19DirectLookupRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CXXNamespaceMemberLookupEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22AnyObjectLookupRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22QualifiedLookupRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleQualifiedLookupRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36UnderlyingTypeDeclsReferencedRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InheritedDeclsReferencedRequestEvE8getEmptyEv OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvE8getEmptyEv Line | Count | Source | 62 | 16.6k | static RequestKey getEmpty() { | 63 | 16.6k | return RequestKey(StorageKind::Empty); | 64 | 16.6k | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvE8getEmptyEv Line | Count | Source | 62 | 34 | static RequestKey getEmpty() { | 63 | 34 | return RequestKey(StorageKind::Empty); | 64 | 34 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvE8getEmptyEv OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvE8getEmptyEv Line | Count | Source | 62 | 5.64k | static RequestKey getEmpty() { | 63 | 5.64k | return RequestKey(StorageKind::Empty); | 64 | 5.64k | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvE8getEmptyEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvE8getEmptyEv Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvE8getEmptyEv ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvE8getEmptyEv Line | Count | Source | 62 | 387k | static RequestKey getEmpty() { | 63 | 387k | return RequestKey(StorageKind::Empty); | 64 | 387k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvE8getEmptyEv Line | Count | Source | 62 | 166 | static RequestKey getEmpty() { | 63 | 166 | return RequestKey(StorageKind::Empty); | 64 | 166 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.68k | static RequestKey getEmpty() { | 63 | 1.68k | return RequestKey(StorageKind::Empty); | 64 | 1.68k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvE8getEmptyEv Line | Count | Source | 62 | 844 | static RequestKey getEmpty() { | 63 | 844 | return RequestKey(StorageKind::Empty); | 64 | 844 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvE8getEmptyEv Line | Count | Source | 62 | 127k | static RequestKey getEmpty() { | 63 | 127k | return RequestKey(StorageKind::Empty); | 64 | 127k | } |
RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvE8getEmptyEv Line | Count | Source | 62 | 38.1k | static RequestKey getEmpty() { | 63 | 38.1k | return RequestKey(StorageKind::Empty); | 64 | 38.1k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvE8getEmptyEv Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvE8getEmptyEv Line | Count | Source | 62 | 52.7k | static RequestKey getEmpty() { | 63 | 52.7k | return RequestKey(StorageKind::Empty); | 64 | 52.7k | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvE8getEmptyEv Line | Count | Source | 62 | 920 | static RequestKey getEmpty() { | 63 | 920 | return RequestKey(StorageKind::Empty); | 64 | 920 | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvE8getEmptyEv Line | Count | Source | 62 | 431 | static RequestKey getEmpty() { | 63 | 431 | return RequestKey(StorageKind::Empty); | 64 | 431 | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20IsNoncopyableRequestEvE8getEmptyEv TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvE8getEmptyEv Line | Count | Source | 62 | 48.5k | static RequestKey getEmpty() { | 63 | 48.5k | return RequestKey(StorageKind::Empty); | 64 | 48.5k | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvE8getEmptyEv Line | Count | Source | 62 | 360k | static RequestKey getEmpty() { | 63 | 360k | return RequestKey(StorageKind::Empty); | 64 | 360k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvE8getEmptyEv |
65 | 40.3M | static RequestKey getTombstone() { |
66 | 40.3M | return RequestKey(StorageKind::Tombstone); |
67 | 40.3M | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18OptimizedIRRequestEvE12getTombstoneEv Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvE12getTombstoneEv ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvE12getTombstoneEv Line | Count | Source | 65 | 42.5k | static RequestKey getTombstone() { | 66 | 42.5k | return RequestKey(StorageKind::Tombstone); | 67 | 42.5k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvE12getTombstoneEv Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvE12getTombstoneEv Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE12getTombstoneEv Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvE12getTombstoneEv Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvE12getTombstoneEv IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvE12getTombstoneEv Line | Count | Source | 65 | 147 | static RequestKey getTombstone() { | 66 | 147 | return RequestKey(StorageKind::Tombstone); | 67 | 147 | } |
Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17LoweredSILRequestEvE12getTombstoneEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20PublicSymbolsRequestEvE12getTombstoneEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18GenerateTBDRequestEvE12getTombstoneEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13APIGenRequestEvE12getTombstoneEv SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvE12getTombstoneEv Line | Count | Source | 65 | 234 | static RequestKey getTombstone() { | 66 | 234 | return RequestKey(StorageKind::Tombstone); | 67 | 234 | } |
Unexecuted instantiation: SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParseSILModuleRequestEvE12getTombstoneEv Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.12k | static RequestKey getTombstone() { | 66 | 1.12k | return RequestKey(StorageKind::Tombstone); | 67 | 1.12k | } |
Unexecuted instantiation: PassManager.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExecuteSILPipelineRequestEvE12getTombstoneEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvE12getTombstoneEv Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvE12getTombstoneEv Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvE12getTombstoneEv Unexecuted instantiation: ParseSIL.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE12getTombstoneEv Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvE12getTombstoneEv Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvE12getTombstoneEv CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvE12getTombstoneEv Line | Count | Source | 65 | 74.2k | static RequestKey getTombstone() { | 66 | 74.2k | return RequestKey(StorageKind::Tombstone); | 67 | 74.2k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvE12getTombstoneEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvE12getTombstoneEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE12getTombstoneEv CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvE12getTombstoneEv Line | Count | Source | 65 | 16.3k | static RequestKey getTombstone() { | 66 | 16.3k | return RequestKey(StorageKind::Tombstone); | 67 | 16.3k | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18CxxRecordSemanticsEvE12getTombstoneEv CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvE12getTombstoneEv Line | Count | Source | 65 | 5.72k | static RequestKey getTombstone() { | 66 | 5.72k | return RequestKey(StorageKind::Tombstone); | 67 | 5.72k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.83k | static RequestKey getTombstone() { | 66 | 1.83k | return RequestKey(StorageKind::Tombstone); | 67 | 1.83k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvE12getTombstoneEv ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.74k | static RequestKey getTombstone() { | 66 | 1.74k | return RequestKey(StorageKind::Tombstone); | 67 | 1.74k | } |
DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvE12getTombstoneEv Line | Count | Source | 65 | 553 | static RequestKey getTombstone() { | 66 | 553 | return RequestKey(StorageKind::Tombstone); | 67 | 553 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvE12getTombstoneEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE12getTombstoneEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvE12getTombstoneEv Unexecuted instantiation: MiscDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE12getTombstoneEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsCCompatibleFuncDeclRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasIsolatedSelfRequestEvE12getTombstoneEv TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvE12getTombstoneEv Line | Count | Source | 65 | 40 | static RequestKey getTombstone() { | 66 | 40 | return RequestKey(StorageKind::Tombstone); | 67 | 40 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvE12getTombstoneEv TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvE12getTombstoneEv Line | Count | Source | 65 | 11.6k | static RequestKey getTombstone() { | 66 | 11.6k | return RequestKey(StorageKind::Tombstone); | 67 | 11.6k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE12getTombstoneEv TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvE12getTombstoneEv Line | Count | Source | 65 | 29.4k | static RequestKey getTombstone() { | 66 | 29.4k | return RequestKey(StorageKind::Tombstone); | 67 | 29.4k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvE12getTombstoneEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvE12getTombstoneEv Line | Count | Source | 65 | 10.4k | static RequestKey getTombstone() { | 66 | 10.4k | return RequestKey(StorageKind::Tombstone); | 67 | 10.4k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE12getTombstoneEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvE12getTombstoneEv Line | Count | Source | 65 | 678k | static RequestKey getTombstone() { | 66 | 678k | return RequestKey(StorageKind::Tombstone); | 67 | 678k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvE12getTombstoneEv TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 163k | static RequestKey getTombstone() { | 66 | 163k | return RequestKey(StorageKind::Tombstone); | 67 | 163k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvE12getTombstoneEv TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvE12getTombstoneEv Line | Count | Source | 65 | 24 | static RequestKey getTombstone() { | 66 | 24 | return RequestKey(StorageKind::Tombstone); | 67 | 24 | } |
TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvE12getTombstoneEv Line | Count | Source | 65 | 16 | static RequestKey getTombstone() { | 66 | 16 | return RequestKey(StorageKind::Tombstone); | 67 | 16 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE12getTombstoneEv TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 83.3k | static RequestKey getTombstone() { | 66 | 83.3k | return RequestKey(StorageKind::Tombstone); | 67 | 83.3k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvE12getTombstoneEv TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 964 | static RequestKey getTombstone() { | 66 | 964 | return RequestKey(StorageKind::Tombstone); | 67 | 964 | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE12getTombstoneEv Line | Count | Source | 65 | 4.99k | static RequestKey getTombstone() { | 66 | 4.99k | return RequestKey(StorageKind::Tombstone); | 67 | 4.99k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 28 | static RequestKey getTombstone() { | 66 | 28 | return RequestKey(StorageKind::Tombstone); | 67 | 28 | } |
TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvE12getTombstoneEv Line | Count | Source | 65 | 63.1k | static RequestKey getTombstone() { | 66 | 63.1k | return RequestKey(StorageKind::Tombstone); | 67 | 63.1k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27PreCheckFunctionBodyRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvE12getTombstoneEv TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvE12getTombstoneEv Line | Count | Source | 65 | 227 | static RequestKey getTombstone() { | 66 | 227 | return RequestKey(StorageKind::Tombstone); | 67 | 227 | } |
TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvE12getTombstoneEv Line | Count | Source | 65 | 89.8k | static RequestKey getTombstone() { | 66 | 89.8k | return RequestKey(StorageKind::Tombstone); | 67 | 89.8k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ResolveTypeRequestEvE12getTombstoneEv TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvE12getTombstoneEv Line | Count | Source | 65 | 289 | static RequestKey getTombstone() { | 66 | 289 | return RequestKey(StorageKind::Tombstone); | 67 | 289 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.08k | static RequestKey getTombstone() { | 66 | 1.08k | return RequestKey(StorageKind::Tombstone); | 67 | 1.08k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.89k | static RequestKey getTombstone() { | 66 | 1.89k | return RequestKey(StorageKind::Tombstone); | 67 | 1.89k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvE12getTombstoneEv Line | Count | Source | 65 | 1.89k | static RequestKey getTombstone() { | 66 | 1.89k | return RequestKey(StorageKind::Tombstone); | 67 | 1.89k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.08k | static RequestKey getTombstone() { | 66 | 1.08k | return RequestKey(StorageKind::Tombstone); | 67 | 1.08k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE12getTombstoneEv Line | Count | Source | 65 | 25.0k | static RequestKey getTombstone() { | 66 | 25.0k | return RequestKey(StorageKind::Tombstone); | 67 | 25.0k | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckASTNodeAtLocRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE12getTombstoneEv Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvE12getTombstoneEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE12getTombstoneEv Line | Count | Source | 65 | 223k | static RequestKey getTombstone() { | 66 | 223k | return RequestKey(StorageKind::Tombstone); | 67 | 223k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvE12getTombstoneEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ClangDirectLookupRequestEvE12getTombstoneEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvE12getTombstoneEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ClangCategoryLookupRequestEvE12getTombstoneEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE12getTombstoneEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE12getTombstoneEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE12getTombstoneEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18CxxRecordSemanticsEvE12getTombstoneEv Unexecuted instantiation: ImportName.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsSafeUseOfCxxDeclEvE12getTombstoneEv Unexecuted instantiation: ImportType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20CxxRecordAsSwiftTypeEvE12getTombstoneEv Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE12getTombstoneEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvE12getTombstoneEv Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 145 | static RequestKey getTombstone() { | 66 | 145 | return RequestKey(StorageKind::Tombstone); | 67 | 145 | } |
Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvE12getTombstoneEv Unexecuted instantiation: AccessRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31TypeDeclsFromWhereClauseRequestEvE12getTombstoneEv ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 222k | static RequestKey getTombstone() { | 66 | 222k | return RequestKey(StorageKind::Tombstone); | 67 | 222k | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvE12getTombstoneEv Line | Count | Source | 65 | 8 | static RequestKey getTombstone() { | 66 | 8 | return RequestKey(StorageKind::Tombstone); | 67 | 8 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvE12getTombstoneEv Line | Count | Source | 65 | 8 | static RequestKey getTombstone() { | 66 | 8 | return RequestKey(StorageKind::Tombstone); | 67 | 8 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvE12getTombstoneEv ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvE12getTombstoneEv Line | Count | Source | 65 | 8 | static RequestKey getTombstone() { | 66 | 8 | return RequestKey(StorageKind::Tombstone); | 67 | 8 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvE12getTombstoneEv Line | Count | Source | 65 | 13 | static RequestKey getTombstone() { | 66 | 13 | return RequestKey(StorageKind::Tombstone); | 67 | 13 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasIsolatedSelfRequestEvE12getTombstoneEv Unexecuted instantiation: ASTPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ClangDirectLookupRequestEvE12getTombstoneEv Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE12getTombstoneEv Line | Count | Source | 65 | 64 | static RequestKey getTombstone() { | 66 | 64 | return RequestKey(StorageKind::Tombstone); | 67 | 64 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvE12getTombstoneEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvE12getTombstoneEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvE12getTombstoneEv Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvE12getTombstoneEv Line | Count | Source | 65 | 5.12k | static RequestKey getTombstone() { | 66 | 5.12k | return RequestKey(StorageKind::Tombstone); | 67 | 5.12k | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvE12getTombstoneEv Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvE12getTombstoneEv Line | Count | Source | 65 | 2.95k | static RequestKey getTombstone() { | 66 | 2.95k | return RequestKey(StorageKind::Tombstone); | 67 | 2.95k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvE12getTombstoneEv Line | Count | Source | 65 | 4.49k | static RequestKey getTombstone() { | 66 | 4.49k | return RequestKey(StorageKind::Tombstone); | 67 | 4.49k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvE12getTombstoneEv Line | Count | Source | 65 | 653 | static RequestKey getTombstone() { | 66 | 653 | return RequestKey(StorageKind::Tombstone); | 67 | 653 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvE12getTombstoneEv Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvE12getTombstoneEv Line | Count | Source | 65 | 2.00k | static RequestKey getTombstone() { | 66 | 2.00k | return RequestKey(StorageKind::Tombstone); | 67 | 2.00k | } |
Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvE12getTombstoneEv Line | Count | Source | 65 | 407k | static RequestKey getTombstone() { | 66 | 407k | return RequestKey(StorageKind::Tombstone); | 67 | 407k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvE12getTombstoneEv Line | Count | Source | 65 | 2.47M | static RequestKey getTombstone() { | 66 | 2.47M | return RequestKey(StorageKind::Tombstone); | 67 | 2.47M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvE12getTombstoneEv Line | Count | Source | 65 | 952k | static RequestKey getTombstone() { | 66 | 952k | return RequestKey(StorageKind::Tombstone); | 67 | 952k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.05k | static RequestKey getTombstone() { | 66 | 1.05k | return RequestKey(StorageKind::Tombstone); | 67 | 1.05k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 3.64M | static RequestKey getTombstone() { | 66 | 3.64M | return RequestKey(StorageKind::Tombstone); | 67 | 3.64M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvE12getTombstoneEv Line | Count | Source | 65 | 78 | static RequestKey getTombstone() { | 66 | 78 | return RequestKey(StorageKind::Tombstone); | 67 | 78 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvE12getTombstoneEv Line | Count | Source | 65 | 656k | static RequestKey getTombstone() { | 66 | 656k | return RequestKey(StorageKind::Tombstone); | 67 | 656k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvE12getTombstoneEv Line | Count | Source | 65 | 208 | static RequestKey getTombstone() { | 66 | 208 | return RequestKey(StorageKind::Tombstone); | 67 | 208 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvE12getTombstoneEv Line | Count | Source | 65 | 10 | static RequestKey getTombstone() { | 66 | 10 | return RequestKey(StorageKind::Tombstone); | 67 | 10 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 33.5k | static RequestKey getTombstone() { | 66 | 33.5k | return RequestKey(StorageKind::Tombstone); | 67 | 33.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvE12getTombstoneEv Line | Count | Source | 65 | 859 | static RequestKey getTombstone() { | 66 | 859 | return RequestKey(StorageKind::Tombstone); | 67 | 859 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.10k | static RequestKey getTombstone() { | 66 | 1.10k | return RequestKey(StorageKind::Tombstone); | 67 | 1.10k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.12k | static RequestKey getTombstone() { | 66 | 1.12k | return RequestKey(StorageKind::Tombstone); | 67 | 1.12k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 814 | static RequestKey getTombstone() { | 66 | 814 | return RequestKey(StorageKind::Tombstone); | 67 | 814 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvE12getTombstoneEv Line | Count | Source | 65 | 25.5k | static RequestKey getTombstone() { | 66 | 25.5k | return RequestKey(StorageKind::Tombstone); | 67 | 25.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.69k | static RequestKey getTombstone() { | 66 | 1.69k | return RequestKey(StorageKind::Tombstone); | 67 | 1.69k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.87k | static RequestKey getTombstone() { | 66 | 1.87k | return RequestKey(StorageKind::Tombstone); | 67 | 1.87k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvE12getTombstoneEv Line | Count | Source | 65 | 4.60k | static RequestKey getTombstone() { | 66 | 4.60k | return RequestKey(StorageKind::Tombstone); | 67 | 4.60k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 48.5k | static RequestKey getTombstone() { | 66 | 48.5k | return RequestKey(StorageKind::Tombstone); | 67 | 48.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 70.2k | static RequestKey getTombstone() { | 66 | 70.2k | return RequestKey(StorageKind::Tombstone); | 67 | 70.2k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 18 | static RequestKey getTombstone() { | 66 | 18 | return RequestKey(StorageKind::Tombstone); | 67 | 18 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvE12getTombstoneEv Line | Count | Source | 65 | 119k | static RequestKey getTombstone() { | 66 | 119k | return RequestKey(StorageKind::Tombstone); | 67 | 119k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvE12getTombstoneEv Line | Count | Source | 65 | 411 | static RequestKey getTombstone() { | 66 | 411 | return RequestKey(StorageKind::Tombstone); | 67 | 411 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsEscapableRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvE12getTombstoneEv Line | Count | Source | 65 | 4.44k | static RequestKey getTombstone() { | 66 | 4.44k | return RequestKey(StorageKind::Tombstone); | 67 | 4.44k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvE12getTombstoneEv Line | Count | Source | 65 | 581k | static RequestKey getTombstone() { | 66 | 581k | return RequestKey(StorageKind::Tombstone); | 67 | 581k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 5.30M | static RequestKey getTombstone() { | 66 | 5.30M | return RequestKey(StorageKind::Tombstone); | 67 | 5.30M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvE12getTombstoneEv Line | Count | Source | 65 | 102k | static RequestKey getTombstone() { | 66 | 102k | return RequestKey(StorageKind::Tombstone); | 67 | 102k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 5.96M | static RequestKey getTombstone() { | 66 | 5.96M | return RequestKey(StorageKind::Tombstone); | 67 | 5.96M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 4.86k | static RequestKey getTombstone() { | 66 | 4.86k | return RequestKey(StorageKind::Tombstone); | 67 | 4.86k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 3.52k | static RequestKey getTombstone() { | 66 | 3.52k | return RequestKey(StorageKind::Tombstone); | 67 | 3.52k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvE12getTombstoneEv Line | Count | Source | 65 | 6.34k | static RequestKey getTombstone() { | 66 | 6.34k | return RequestKey(StorageKind::Tombstone); | 67 | 6.34k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.77k | static RequestKey getTombstone() { | 66 | 1.77k | return RequestKey(StorageKind::Tombstone); | 67 | 1.77k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.59M | static RequestKey getTombstone() { | 66 | 1.59M | return RequestKey(StorageKind::Tombstone); | 67 | 1.59M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 455k | static RequestKey getTombstone() { | 66 | 455k | return RequestKey(StorageKind::Tombstone); | 67 | 455k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 2.32k | static RequestKey getTombstone() { | 66 | 2.32k | return RequestKey(StorageKind::Tombstone); | 67 | 2.32k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 61.5k | static RequestKey getTombstone() { | 66 | 61.5k | return RequestKey(StorageKind::Tombstone); | 67 | 61.5k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 23.0k | static RequestKey getTombstone() { | 66 | 23.0k | return RequestKey(StorageKind::Tombstone); | 67 | 23.0k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvE12getTombstoneEv Line | Count | Source | 65 | 3.90k | static RequestKey getTombstone() { | 66 | 3.90k | return RequestKey(StorageKind::Tombstone); | 67 | 3.90k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.76k | static RequestKey getTombstone() { | 66 | 1.76k | return RequestKey(StorageKind::Tombstone); | 67 | 1.76k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvE12getTombstoneEv Line | Count | Source | 65 | 2.75k | static RequestKey getTombstone() { | 66 | 2.75k | return RequestKey(StorageKind::Tombstone); | 67 | 2.75k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvE12getTombstoneEv Line | Count | Source | 65 | 4.02k | static RequestKey getTombstone() { | 66 | 4.02k | return RequestKey(StorageKind::Tombstone); | 67 | 4.02k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvE12getTombstoneEv Line | Count | Source | 65 | 658 | static RequestKey getTombstone() { | 66 | 658 | return RequestKey(StorageKind::Tombstone); | 67 | 658 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvE12getTombstoneEv Line | Count | Source | 65 | 135 | static RequestKey getTombstone() { | 66 | 135 | return RequestKey(StorageKind::Tombstone); | 67 | 135 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 4.62k | static RequestKey getTombstone() { | 66 | 4.62k | return RequestKey(StorageKind::Tombstone); | 67 | 4.62k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvE12getTombstoneEv Line | Count | Source | 65 | 4 | static RequestKey getTombstone() { | 66 | 4 | return RequestKey(StorageKind::Tombstone); | 67 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvE12getTombstoneEv Line | Count | Source | 65 | 34 | static RequestKey getTombstone() { | 66 | 34 | return RequestKey(StorageKind::Tombstone); | 67 | 34 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 16.8k | static RequestKey getTombstone() { | 66 | 16.8k | return RequestKey(StorageKind::Tombstone); | 67 | 16.8k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.54k | static RequestKey getTombstone() { | 66 | 1.54k | return RequestKey(StorageKind::Tombstone); | 67 | 1.54k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.39k | static RequestKey getTombstone() { | 66 | 1.39k | return RequestKey(StorageKind::Tombstone); | 67 | 1.39k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.34k | static RequestKey getTombstone() { | 66 | 1.34k | return RequestKey(StorageKind::Tombstone); | 67 | 1.34k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.03k | static RequestKey getTombstone() { | 66 | 1.03k | return RequestKey(StorageKind::Tombstone); | 67 | 1.03k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvE12getTombstoneEv Line | Count | Source | 65 | 32 | static RequestKey getTombstone() { | 66 | 32 | return RequestKey(StorageKind::Tombstone); | 67 | 32 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 2 | static RequestKey getTombstone() { | 66 | 2 | return RequestKey(StorageKind::Tombstone); | 67 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 6.98k | static RequestKey getTombstone() { | 66 | 6.98k | return RequestKey(StorageKind::Tombstone); | 67 | 6.98k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.37k | static RequestKey getTombstone() { | 66 | 1.37k | return RequestKey(StorageKind::Tombstone); | 67 | 1.37k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 909 | static RequestKey getTombstone() { | 66 | 909 | return RequestKey(StorageKind::Tombstone); | 67 | 909 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 162k | static RequestKey getTombstone() { | 66 | 162k | return RequestKey(StorageKind::Tombstone); | 67 | 162k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvE12getTombstoneEv Line | Count | Source | 65 | 8.49k | static RequestKey getTombstone() { | 66 | 8.49k | return RequestKey(StorageKind::Tombstone); | 67 | 8.49k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.15k | static RequestKey getTombstone() { | 66 | 1.15k | return RequestKey(StorageKind::Tombstone); | 67 | 1.15k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.14M | static RequestKey getTombstone() { | 66 | 1.14M | return RequestKey(StorageKind::Tombstone); | 67 | 1.14M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvE12getTombstoneEv Line | Count | Source | 65 | 8.44k | static RequestKey getTombstone() { | 66 | 8.44k | return RequestKey(StorageKind::Tombstone); | 67 | 8.44k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 381k | static RequestKey getTombstone() { | 66 | 381k | return RequestKey(StorageKind::Tombstone); | 67 | 381k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvE12getTombstoneEv Line | Count | Source | 65 | 718k | static RequestKey getTombstone() { | 66 | 718k | return RequestKey(StorageKind::Tombstone); | 67 | 718k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvE12getTombstoneEv Line | Count | Source | 65 | 924 | static RequestKey getTombstone() { | 66 | 924 | return RequestKey(StorageKind::Tombstone); | 67 | 924 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvE12getTombstoneEv Line | Count | Source | 65 | 16.8k | static RequestKey getTombstone() { | 66 | 16.8k | return RequestKey(StorageKind::Tombstone); | 67 | 16.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvE12getTombstoneEv Line | Count | Source | 65 | 3.57M | static RequestKey getTombstone() { | 66 | 3.57M | return RequestKey(StorageKind::Tombstone); | 67 | 3.57M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 3.03k | static RequestKey getTombstone() { | 66 | 3.03k | return RequestKey(StorageKind::Tombstone); | 67 | 3.03k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 3.05k | static RequestKey getTombstone() { | 66 | 3.05k | return RequestKey(StorageKind::Tombstone); | 67 | 3.05k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 240k | static RequestKey getTombstone() { | 66 | 240k | return RequestKey(StorageKind::Tombstone); | 67 | 240k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvE12getTombstoneEv Line | Count | Source | 65 | 70.7k | static RequestKey getTombstone() { | 66 | 70.7k | return RequestKey(StorageKind::Tombstone); | 67 | 70.7k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvE12getTombstoneEv Line | Count | Source | 65 | 97.6k | static RequestKey getTombstone() { | 66 | 97.6k | return RequestKey(StorageKind::Tombstone); | 67 | 97.6k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvE12getTombstoneEv Line | Count | Source | 65 | 22 | static RequestKey getTombstone() { | 66 | 22 | return RequestKey(StorageKind::Tombstone); | 67 | 22 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvE12getTombstoneEv Line | Count | Source | 65 | 90 | static RequestKey getTombstone() { | 66 | 90 | return RequestKey(StorageKind::Tombstone); | 67 | 90 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 76.2k | static RequestKey getTombstone() { | 66 | 76.2k | return RequestKey(StorageKind::Tombstone); | 67 | 76.2k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvE12getTombstoneEv Line | Count | Source | 65 | 243k | static RequestKey getTombstone() { | 66 | 243k | return RequestKey(StorageKind::Tombstone); | 67 | 243k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 182k | static RequestKey getTombstone() { | 66 | 182k | return RequestKey(StorageKind::Tombstone); | 67 | 182k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.56k | static RequestKey getTombstone() { | 66 | 1.56k | return RequestKey(StorageKind::Tombstone); | 67 | 1.56k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvE12getTombstoneEv Line | Count | Source | 65 | 189k | static RequestKey getTombstone() { | 66 | 189k | return RequestKey(StorageKind::Tombstone); | 67 | 189k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvE12getTombstoneEv Line | Count | Source | 65 | 9.87k | static RequestKey getTombstone() { | 66 | 9.87k | return RequestKey(StorageKind::Tombstone); | 67 | 9.87k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvE12getTombstoneEv Line | Count | Source | 65 | 4.64k | static RequestKey getTombstone() { | 66 | 4.64k | return RequestKey(StorageKind::Tombstone); | 67 | 4.64k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 153k | static RequestKey getTombstone() { | 66 | 153k | return RequestKey(StorageKind::Tombstone); | 67 | 153k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE12getTombstoneEv Line | Count | Source | 65 | 126k | static RequestKey getTombstone() { | 66 | 126k | return RequestKey(StorageKind::Tombstone); | 67 | 126k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvE12getTombstoneEv Line | Count | Source | 65 | 7.53k | static RequestKey getTombstone() { | 66 | 7.53k | return RequestKey(StorageKind::Tombstone); | 67 | 7.53k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvE12getTombstoneEv Line | Count | Source | 65 | 13.0k | static RequestKey getTombstone() { | 66 | 13.0k | return RequestKey(StorageKind::Tombstone); | 67 | 13.0k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvE12getTombstoneEv Line | Count | Source | 65 | 2.15M | static RequestKey getTombstone() { | 66 | 2.15M | return RequestKey(StorageKind::Tombstone); | 67 | 2.15M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvE12getTombstoneEv Line | Count | Source | 65 | 27 | static RequestKey getTombstone() { | 66 | 27 | return RequestKey(StorageKind::Tombstone); | 67 | 27 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvE12getTombstoneEv DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvE12getTombstoneEv Line | Count | Source | 65 | 412k | static RequestKey getTombstone() { | 66 | 412k | return RequestKey(StorageKind::Tombstone); | 67 | 412k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE12getTombstoneEv Line | Count | Source | 65 | 328k | static RequestKey getTombstone() { | 66 | 328k | return RequestKey(StorageKind::Tombstone); | 67 | 328k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvE12getTombstoneEv Line | Count | Source | 65 | 31.3k | static RequestKey getTombstone() { | 66 | 31.3k | return RequestKey(StorageKind::Tombstone); | 67 | 31.3k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvE12getTombstoneEv Line | Count | Source | 65 | 31.0k | static RequestKey getTombstone() { | 66 | 31.0k | return RequestKey(StorageKind::Tombstone); | 67 | 31.0k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvE12getTombstoneEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvE12getTombstoneEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvE12getTombstoneEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvE12getTombstoneEv DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvE12getTombstoneEv Line | Count | Source | 65 | 16 | static RequestKey getTombstone() { | 66 | 16 | return RequestKey(StorageKind::Tombstone); | 67 | 16 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvE12getTombstoneEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvE12getTombstoneEv DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvE12getTombstoneEv Line | Count | Source | 65 | 32 | static RequestKey getTombstone() { | 66 | 32 | return RequestKey(StorageKind::Tombstone); | 67 | 32 | } |
DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvE12getTombstoneEv Line | Count | Source | 65 | 5.87k | static RequestKey getTombstone() { | 66 | 5.87k | return RequestKey(StorageKind::Tombstone); | 67 | 5.87k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvE12getTombstoneEv Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvE12getTombstoneEv Line | Count | Source | 65 | 201k | static RequestKey getTombstone() { | 66 | 201k | return RequestKey(StorageKind::Tombstone); | 67 | 201k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvE12getTombstoneEv Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvE12getTombstoneEv Line | Count | Source | 65 | 4.66k | static RequestKey getTombstone() { | 66 | 4.66k | return RequestKey(StorageKind::Tombstone); | 67 | 4.66k | } |
Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE12getTombstoneEv Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 725k | static RequestKey getTombstone() { | 66 | 725k | return RequestKey(StorageKind::Tombstone); | 67 | 725k | } |
GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvE12getTombstoneEv Line | Count | Source | 65 | 30.7k | static RequestKey getTombstone() { | 66 | 30.7k | return RequestKey(StorageKind::Tombstone); | 67 | 30.7k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvE12getTombstoneEv Line | Count | Source | 65 | 43 | static RequestKey getTombstone() { | 66 | 43 | return RequestKey(StorageKind::Tombstone); | 67 | 43 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.12k | static RequestKey getTombstone() { | 66 | 1.12k | return RequestKey(StorageKind::Tombstone); | 67 | 1.12k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 889 | static RequestKey getTombstone() { | 66 | 889 | return RequestKey(StorageKind::Tombstone); | 67 | 889 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvE12getTombstoneEv Line | Count | Source | 65 | 18 | static RequestKey getTombstone() { | 66 | 18 | return RequestKey(StorageKind::Tombstone); | 67 | 18 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE12getTombstoneEv Line | Count | Source | 65 | 1.20M | static RequestKey getTombstone() { | 66 | 1.20M | return RequestKey(StorageKind::Tombstone); | 67 | 1.20M | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39ImplicitKnownProtocolConformanceRequestEvE12getTombstoneEv Line | Count | Source | 65 | 29.9k | static RequestKey getTombstone() { | 66 | 29.9k | return RequestKey(StorageKind::Tombstone); | 67 | 29.9k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvE12getTombstoneEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvE12getTombstoneEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvE12getTombstoneEv Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.93M | static RequestKey getTombstone() { | 66 | 1.93M | return RequestKey(StorageKind::Tombstone); | 67 | 1.93M | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvE12getTombstoneEv Line | Count | Source | 65 | 682 | static RequestKey getTombstone() { | 66 | 682 | return RequestKey(StorageKind::Tombstone); | 67 | 682 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 37.1k | static RequestKey getTombstone() { | 66 | 37.1k | return RequestKey(StorageKind::Tombstone); | 67 | 37.1k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.29k | static RequestKey getTombstone() { | 66 | 1.29k | return RequestKey(StorageKind::Tombstone); | 67 | 1.29k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvE12getTombstoneEv Line | Count | Source | 65 | 5.35k | static RequestKey getTombstone() { | 66 | 5.35k | return RequestKey(StorageKind::Tombstone); | 67 | 5.35k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32LookupConformanceInModuleRequestEvE12getTombstoneEv Unexecuted instantiation: ModuleNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21LookupInModuleRequestEvE12getTombstoneEv NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE12getTombstoneEv Line | Count | Source | 65 | 35.0k | static RequestKey getTombstone() { | 66 | 35.0k | return RequestKey(StorageKind::Tombstone); | 67 | 35.0k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE12getTombstoneEv NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvE12getTombstoneEv Line | Count | Source | 65 | 257k | static RequestKey getTombstone() { | 66 | 257k | return RequestKey(StorageKind::Tombstone); | 67 | 257k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvE12getTombstoneEv Line | Count | Source | 65 | 37.1k | static RequestKey getTombstone() { | 66 | 37.1k | return RequestKey(StorageKind::Tombstone); | 67 | 37.1k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvE12getTombstoneEv Line | Count | Source | 65 | 265 | static RequestKey getTombstone() { | 66 | 265 | return RequestKey(StorageKind::Tombstone); | 67 | 265 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 61.6k | static RequestKey getTombstone() { | 66 | 61.6k | return RequestKey(StorageKind::Tombstone); | 67 | 61.6k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 403 | static RequestKey getTombstone() { | 66 | 403 | return RequestKey(StorageKind::Tombstone); | 67 | 403 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32SelfBoundsFromWhereClauseRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37SelfBoundsFromGenericSignatureRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19DirectLookupRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CXXNamespaceMemberLookupEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22AnyObjectLookupRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22QualifiedLookupRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleQualifiedLookupRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36UnderlyingTypeDeclsReferencedRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InheritedDeclsReferencedRequestEvE12getTombstoneEv OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 14.4k | static RequestKey getTombstone() { | 66 | 14.4k | return RequestKey(StorageKind::Tombstone); | 67 | 14.4k | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 20 | static RequestKey getTombstone() { | 66 | 20 | return RequestKey(StorageKind::Tombstone); | 67 | 20 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvE12getTombstoneEv OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvE12getTombstoneEv Line | Count | Source | 65 | 4.94k | static RequestKey getTombstone() { | 66 | 4.94k | return RequestKey(StorageKind::Tombstone); | 67 | 4.94k | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvE12getTombstoneEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvE12getTombstoneEv Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvE12getTombstoneEv ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 369k | static RequestKey getTombstone() { | 66 | 369k | return RequestKey(StorageKind::Tombstone); | 67 | 369k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvE12getTombstoneEv Line | Count | Source | 65 | 83 | static RequestKey getTombstone() { | 66 | 83 | return RequestKey(StorageKind::Tombstone); | 67 | 83 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.03k | static RequestKey getTombstone() { | 66 | 1.03k | return RequestKey(StorageKind::Tombstone); | 67 | 1.03k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvE12getTombstoneEv Line | Count | Source | 65 | 839 | static RequestKey getTombstone() { | 66 | 839 | return RequestKey(StorageKind::Tombstone); | 67 | 839 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvE12getTombstoneEv Line | Count | Source | 65 | 114k | static RequestKey getTombstone() { | 66 | 114k | return RequestKey(StorageKind::Tombstone); | 67 | 114k | } |
RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvE12getTombstoneEv Line | Count | Source | 65 | 30.2k | static RequestKey getTombstone() { | 66 | 30.2k | return RequestKey(StorageKind::Tombstone); | 67 | 30.2k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvE12getTombstoneEv Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvE12getTombstoneEv Line | Count | Source | 65 | 39.7k | static RequestKey getTombstone() { | 66 | 39.7k | return RequestKey(StorageKind::Tombstone); | 67 | 39.7k | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvE12getTombstoneEv Line | Count | Source | 65 | 734 | static RequestKey getTombstone() { | 66 | 734 | return RequestKey(StorageKind::Tombstone); | 67 | 734 | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvE12getTombstoneEv Line | Count | Source | 65 | 337 | static RequestKey getTombstone() { | 66 | 337 | return RequestKey(StorageKind::Tombstone); | 67 | 337 | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20IsNoncopyableRequestEvE12getTombstoneEv TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvE12getTombstoneEv Line | Count | Source | 65 | 39.7k | static RequestKey getTombstone() { | 66 | 39.7k | return RequestKey(StorageKind::Tombstone); | 67 | 39.7k | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 334k | static RequestKey getTombstone() { | 66 | 334k | return RequestKey(StorageKind::Tombstone); | 67 | 334k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvE12getTombstoneEv |
68 | | |
69 | 83.8M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { |
70 | 83.8M | assert(kind != StorageKind::Normal); |
71 | 83.8M | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2ENS4_11StorageKindE ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 93.4k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 93.4k | assert(kind != StorageKind::Normal); | 71 | 93.4k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ENS4_11StorageKindE Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2ENS4_11StorageKindE IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 392 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 392 | assert(kind != StorageKind::Normal); | 71 | 392 | } |
SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 624 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 624 | assert(kind != StorageKind::Normal); | 71 | 624 | } |
Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.34k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.34k | assert(kind != StorageKind::Normal); | 71 | 2.34k | } |
Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2ENS4_11StorageKindE CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 162k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 162k | assert(kind != StorageKind::Normal); | 71 | 162k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2ENS4_11StorageKindE CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 35.3k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 35.3k | assert(kind != StorageKind::Normal); | 71 | 35.3k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 13.5k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 13.5k | assert(kind != StorageKind::Normal); | 71 | 13.5k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 4.63k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 4.63k | assert(kind != StorageKind::Normal); | 71 | 4.63k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2ENS4_11StorageKindE ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 4.30k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 4.30k | assert(kind != StorageKind::Normal); | 71 | 4.30k | } |
DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.61k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.61k | assert(kind != StorageKind::Normal); | 71 | 1.61k | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsCCompatibleFuncDeclRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ENS4_11StorageKindE TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 92 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 92 | assert(kind != StorageKind::Normal); | 71 | 92 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvEC2ENS4_11StorageKindE TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 27.7k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 27.7k | assert(kind != StorageKind::Normal); | 71 | 27.7k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ENS4_11StorageKindE TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 66.8k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 66.8k | assert(kind != StorageKind::Normal); | 71 | 66.8k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2ENS4_11StorageKindE TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 24.0k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 24.0k | assert(kind != StorageKind::Normal); | 71 | 24.0k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ENS4_11StorageKindE TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.50M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.50M | assert(kind != StorageKind::Normal); | 71 | 1.50M | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2ENS4_11StorageKindE TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 327k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 327k | assert(kind != StorageKind::Normal); | 71 | 327k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvEC2ENS4_11StorageKindE TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 64 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 64 | assert(kind != StorageKind::Normal); | 71 | 64 | } |
TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 40 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 40 | assert(kind != StorageKind::Normal); | 71 | 40 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2ENS4_11StorageKindE TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 188k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 188k | assert(kind != StorageKind::Normal); | 71 | 188k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2ENS4_11StorageKindE TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.56k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.56k | assert(kind != StorageKind::Normal); | 71 | 2.56k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 10.7k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 10.7k | assert(kind != StorageKind::Normal); | 71 | 10.7k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 84 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 84 | assert(kind != StorageKind::Normal); | 71 | 84 | } |
TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 146k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 146k | assert(kind != StorageKind::Normal); | 71 | 146k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2ENS4_11StorageKindE TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 531 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 531 | assert(kind != StorageKind::Normal); | 71 | 531 | } |
TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 208k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 208k | assert(kind != StorageKind::Normal); | 71 | 208k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ENS4_11StorageKindE TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 704 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 704 | assert(kind != StorageKind::Normal); | 71 | 704 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.66k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.66k | assert(kind != StorageKind::Normal); | 71 | 2.66k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 4.88k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 4.88k | assert(kind != StorageKind::Normal); | 71 | 4.88k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 4.88k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 4.88k | assert(kind != StorageKind::Normal); | 71 | 4.88k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.66k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.66k | assert(kind != StorageKind::Normal); | 71 | 2.66k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 58.7k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 58.7k | assert(kind != StorageKind::Normal); | 71 | 58.7k | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ENS4_11StorageKindE ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 546k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 546k | assert(kind != StorageKind::Normal); | 71 | 546k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ENS4_11StorageKindE Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvEC2ENS4_11StorageKindE Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 290 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 290 | assert(kind != StorageKind::Normal); | 71 | 290 | } |
Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2ENS4_11StorageKindE ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 543k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 543k | assert(kind != StorageKind::Normal); | 71 | 543k | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 24 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 24 | assert(kind != StorageKind::Normal); | 71 | 24 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 24 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 24 | assert(kind != StorageKind::Normal); | 71 | 24 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEC2ENS4_11StorageKindE ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 24 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 24 | assert(kind != StorageKind::Normal); | 71 | 24 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 34 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 34 | assert(kind != StorageKind::Normal); | 71 | 34 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 156 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 156 | assert(kind != StorageKind::Normal); | 71 | 156 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEC2ENS4_11StorageKindE Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 11.2k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 11.2k | assert(kind != StorageKind::Normal); | 71 | 11.2k | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEC2ENS4_11StorageKindE Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 6.25k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 6.25k | assert(kind != StorageKind::Normal); | 71 | 6.25k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 9.84k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 9.84k | assert(kind != StorageKind::Normal); | 71 | 9.84k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.75k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.75k | assert(kind != StorageKind::Normal); | 71 | 1.75k | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEC2ENS4_11StorageKindE Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 4.64k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 4.64k | assert(kind != StorageKind::Normal); | 71 | 4.64k | } |
Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 885k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 885k | assert(kind != StorageKind::Normal); | 71 | 885k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 5.49M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 5.49M | assert(kind != StorageKind::Normal); | 71 | 5.49M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.11M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.11M | assert(kind != StorageKind::Normal); | 71 | 2.11M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.37k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.37k | assert(kind != StorageKind::Normal); | 71 | 2.37k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 7.44M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 7.44M | assert(kind != StorageKind::Normal); | 71 | 7.44M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 205 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 205 | assert(kind != StorageKind::Normal); | 71 | 205 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.31M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.31M | assert(kind != StorageKind::Normal); | 71 | 1.31M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 535 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 535 | assert(kind != StorageKind::Normal); | 71 | 535 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 24 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 24 | assert(kind != StorageKind::Normal); | 71 | 24 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 67.1k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 67.1k | assert(kind != StorageKind::Normal); | 71 | 67.1k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.43k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.43k | assert(kind != StorageKind::Normal); | 71 | 2.43k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.22k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.22k | assert(kind != StorageKind::Normal); | 71 | 2.22k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.36k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.36k | assert(kind != StorageKind::Normal); | 71 | 2.36k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.10k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.10k | assert(kind != StorageKind::Normal); | 71 | 2.10k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 58.3k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 58.3k | assert(kind != StorageKind::Normal); | 71 | 58.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 3.42k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 3.42k | assert(kind != StorageKind::Normal); | 71 | 3.42k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 3.79k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 3.79k | assert(kind != StorageKind::Normal); | 71 | 3.79k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 9.61k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 9.61k | assert(kind != StorageKind::Normal); | 71 | 9.61k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 112k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 112k | assert(kind != StorageKind::Normal); | 71 | 112k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 140k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 140k | assert(kind != StorageKind::Normal); | 71 | 140k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 44 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 44 | assert(kind != StorageKind::Normal); | 71 | 44 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 238k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 238k | assert(kind != StorageKind::Normal); | 71 | 238k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 838 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 838 | assert(kind != StorageKind::Normal); | 71 | 838 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsEscapableRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 9.38k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 9.38k | assert(kind != StorageKind::Normal); | 71 | 9.38k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.29M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.29M | assert(kind != StorageKind::Normal); | 71 | 1.29M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 10.6M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 10.6M | assert(kind != StorageKind::Normal); | 71 | 10.6M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 204k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 204k | assert(kind != StorageKind::Normal); | 71 | 204k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 11.9M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 11.9M | assert(kind != StorageKind::Normal); | 71 | 11.9M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 11.1k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 11.1k | assert(kind != StorageKind::Normal); | 71 | 11.1k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 8.52k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 8.52k | assert(kind != StorageKind::Normal); | 71 | 8.52k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 13.5k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 13.5k | assert(kind != StorageKind::Normal); | 71 | 13.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 3.60k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 3.60k | assert(kind != StorageKind::Normal); | 71 | 3.60k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 3.20M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 3.20M | assert(kind != StorageKind::Normal); | 71 | 3.20M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 933k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 933k | assert(kind != StorageKind::Normal); | 71 | 933k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 4.71k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 4.71k | assert(kind != StorageKind::Normal); | 71 | 4.71k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 152k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 152k | assert(kind != StorageKind::Normal); | 71 | 152k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 54.4k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 54.4k | assert(kind != StorageKind::Normal); | 71 | 54.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 9.59k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 9.59k | assert(kind != StorageKind::Normal); | 71 | 9.59k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 4.37k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 4.37k | assert(kind != StorageKind::Normal); | 71 | 4.37k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 6.08k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 6.08k | assert(kind != StorageKind::Normal); | 71 | 6.08k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 10.1k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 10.1k | assert(kind != StorageKind::Normal); | 71 | 10.1k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.73k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.73k | assert(kind != StorageKind::Normal); | 71 | 1.73k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 304 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 304 | assert(kind != StorageKind::Normal); | 71 | 304 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 9.57k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 9.57k | assert(kind != StorageKind::Normal); | 71 | 9.57k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 12 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 12 | assert(kind != StorageKind::Normal); | 71 | 12 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 86 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 86 | assert(kind != StorageKind::Normal); | 71 | 86 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 34.6k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 34.6k | assert(kind != StorageKind::Normal); | 71 | 34.6k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 3.84k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 3.84k | assert(kind != StorageKind::Normal); | 71 | 3.84k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.79k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.79k | assert(kind != StorageKind::Normal); | 71 | 2.79k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.72k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.72k | assert(kind != StorageKind::Normal); | 71 | 2.72k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.13k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.13k | assert(kind != StorageKind::Normal); | 71 | 2.13k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 73 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 73 | assert(kind != StorageKind::Normal); | 71 | 73 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 6 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 6 | assert(kind != StorageKind::Normal); | 71 | 6 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 14.2k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 14.2k | assert(kind != StorageKind::Normal); | 71 | 14.2k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 3.30k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 3.30k | assert(kind != StorageKind::Normal); | 71 | 3.30k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.37k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.37k | assert(kind != StorageKind::Normal); | 71 | 2.37k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 333k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 333k | assert(kind != StorageKind::Normal); | 71 | 333k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 17.0k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 17.0k | assert(kind != StorageKind::Normal); | 71 | 17.0k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.91k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.91k | assert(kind != StorageKind::Normal); | 71 | 2.91k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.29M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.29M | assert(kind != StorageKind::Normal); | 71 | 2.29M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 16.9k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 16.9k | assert(kind != StorageKind::Normal); | 71 | 16.9k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 815k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 815k | assert(kind != StorageKind::Normal); | 71 | 815k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.70M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.70M | assert(kind != StorageKind::Normal); | 71 | 1.70M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.13k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.13k | assert(kind != StorageKind::Normal); | 71 | 2.13k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 33.6k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 33.6k | assert(kind != StorageKind::Normal); | 71 | 33.6k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 7.39M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 7.39M | assert(kind != StorageKind::Normal); | 71 | 7.39M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 7.32k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 7.32k | assert(kind != StorageKind::Normal); | 71 | 7.32k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 7.34k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 7.34k | assert(kind != StorageKind::Normal); | 71 | 7.34k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 547k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 547k | assert(kind != StorageKind::Normal); | 71 | 547k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 161k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 161k | assert(kind != StorageKind::Normal); | 71 | 161k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 219k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 219k | assert(kind != StorageKind::Normal); | 71 | 219k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 52 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 52 | assert(kind != StorageKind::Normal); | 71 | 52 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 208 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 208 | assert(kind != StorageKind::Normal); | 71 | 208 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 170k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 170k | assert(kind != StorageKind::Normal); | 71 | 170k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 555k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 555k | assert(kind != StorageKind::Normal); | 71 | 555k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 366k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 366k | assert(kind != StorageKind::Normal); | 71 | 366k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 3.56k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 3.56k | assert(kind != StorageKind::Normal); | 71 | 3.56k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 379k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 379k | assert(kind != StorageKind::Normal); | 71 | 379k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 21.9k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 21.9k | assert(kind != StorageKind::Normal); | 71 | 21.9k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 9.38k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 9.38k | assert(kind != StorageKind::Normal); | 71 | 9.38k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 373k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 373k | assert(kind != StorageKind::Normal); | 71 | 373k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 287k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 287k | assert(kind != StorageKind::Normal); | 71 | 287k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 16.8k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 16.8k | assert(kind != StorageKind::Normal); | 71 | 16.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 30.3k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 30.3k | assert(kind != StorageKind::Normal); | 71 | 30.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 4.43M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 4.43M | assert(kind != StorageKind::Normal); | 71 | 4.43M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 70 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 70 | assert(kind != StorageKind::Normal); | 71 | 70 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 893k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 893k | assert(kind != StorageKind::Normal); | 71 | 893k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 667k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 667k | assert(kind != StorageKind::Normal); | 71 | 667k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 71.9k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 71.9k | assert(kind != StorageKind::Normal); | 71 | 71.9k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 69.0k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 69.0k | assert(kind != StorageKind::Normal); | 71 | 69.0k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEC2ENS4_11StorageKindE DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 44 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 44 | assert(kind != StorageKind::Normal); | 71 | 44 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEC2ENS4_11StorageKindE DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 72 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 72 | assert(kind != StorageKind::Normal); | 71 | 72 | } |
DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 13.6k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 13.6k | assert(kind != StorageKind::Normal); | 71 | 13.6k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEC2ENS4_11StorageKindE Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 423k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 423k | assert(kind != StorageKind::Normal); | 71 | 423k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvEC2ENS4_11StorageKindE Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 11.8k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 11.8k | assert(kind != StorageKind::Normal); | 71 | 11.8k | } |
Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ENS4_11StorageKindE Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.45M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.45M | assert(kind != StorageKind::Normal); | 71 | 1.45M | } |
GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 65.5k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 65.5k | assert(kind != StorageKind::Normal); | 71 | 65.5k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 108 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 108 | assert(kind != StorageKind::Normal); | 71 | 108 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.78k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.78k | assert(kind != StorageKind::Normal); | 71 | 2.78k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.19k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.19k | assert(kind != StorageKind::Normal); | 71 | 2.19k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 48 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 48 | assert(kind != StorageKind::Normal); | 71 | 48 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.41M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.41M | assert(kind != StorageKind::Normal); | 71 | 2.41M | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39ImplicitKnownProtocolConformanceRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 64.3k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 64.3k | assert(kind != StorageKind::Normal); | 71 | 64.3k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvEC2ENS4_11StorageKindE Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 4.00M | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 4.00M | assert(kind != StorageKind::Normal); | 71 | 4.00M | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.66k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.66k | assert(kind != StorageKind::Normal); | 71 | 1.66k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 75.4k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 75.4k | assert(kind != StorageKind::Normal); | 71 | 75.4k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 3.40k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 3.40k | assert(kind != StorageKind::Normal); | 71 | 3.40k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 10.9k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 10.9k | assert(kind != StorageKind::Normal); | 71 | 10.9k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 78.7k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 78.7k | assert(kind != StorageKind::Normal); | 71 | 78.7k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ENS4_11StorageKindE NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 590k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 590k | assert(kind != StorageKind::Normal); | 71 | 590k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 74.5k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 74.5k | assert(kind != StorageKind::Normal); | 71 | 74.5k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 631 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 631 | assert(kind != StorageKind::Normal); | 71 | 631 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 128k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 128k | assert(kind != StorageKind::Normal); | 71 | 128k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 968 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 968 | assert(kind != StorageKind::Normal); | 71 | 968 | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 31.0k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 31.0k | assert(kind != StorageKind::Normal); | 71 | 31.0k | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 54 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 54 | assert(kind != StorageKind::Normal); | 71 | 54 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvEC2ENS4_11StorageKindE OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 10.5k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 10.5k | assert(kind != StorageKind::Normal); | 71 | 10.5k | } |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvEC2ENS4_11StorageKindE ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 757k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 757k | assert(kind != StorageKind::Normal); | 71 | 757k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 249 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 249 | assert(kind != StorageKind::Normal); | 71 | 249 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.71k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.71k | assert(kind != StorageKind::Normal); | 71 | 2.71k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.68k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.68k | assert(kind != StorageKind::Normal); | 71 | 1.68k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 242k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 242k | assert(kind != StorageKind::Normal); | 71 | 242k | } |
RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 68.4k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 68.4k | assert(kind != StorageKind::Normal); | 71 | 68.4k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2ENS4_11StorageKindE Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 92.5k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 92.5k | assert(kind != StorageKind::Normal); | 71 | 92.5k | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.65k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.65k | assert(kind != StorageKind::Normal); | 71 | 1.65k | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 768 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 768 | assert(kind != StorageKind::Normal); | 71 | 768 | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20IsNoncopyableRequestEvEC2ENS4_11StorageKindE TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 88.2k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 88.2k | assert(kind != StorageKind::Normal); | 71 | 88.2k | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 694k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 694k | assert(kind != StorageKind::Normal); | 71 | 694k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2ENS4_11StorageKindE |
72 | | |
73 | | public: |
74 | | explicit RequestKey(Request req) |
75 | 3.18M | : Req(std::move(req)), Kind(StorageKind::Normal) {}Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2ES3_ ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2ES3_ Line | Count | Source | 75 | 8.35k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2ES3_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvEC2ES3_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ES3_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvEC2ES3_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ES3_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2ES3_ IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvEC2ES3_ Line | Count | Source | 75 | 49 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2ES3_ Line | Count | Source | 75 | 78 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2ES3_ Line | Count | Source | 75 | 88 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2ES3_ Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2ES3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2ES3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvEC2ES3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2ES3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvEC2ES3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2ES3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ES3_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2ES3_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvEC2ES3_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2ES3_ CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvEC2ES3_ Line | Count | Source | 75 | 13.4k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvEC2ES3_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2ES3_ CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvEC2ES3_ Line | Count | Source | 75 | 2.57k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEC2ES3_ Line | Count | Source | 75 | 1.91k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEC2ES3_ Line | Count | Source | 75 | 853 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2ES3_ ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvEC2ES3_ Line | Count | Source | 75 | 734 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2ES3_ Line | Count | Source | 75 | 457 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2ES3_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsCCompatibleFuncDeclRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ES3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ES3_ TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvEC2ES3_ Line | Count | Source | 75 | 8 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvEC2ES3_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvEC2ES3_ Line | Count | Source | 75 | 4.20k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ES3_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2ES3_ Line | Count | Source | 75 | 7.79k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2ES3_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvEC2ES3_ Line | Count | Source | 75 | 3.00k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ES3_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvEC2ES3_ Line | Count | Source | 75 | 148k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2ES3_ TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 166 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvEC2ES3_ TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2ES3_ Line | Count | Source | 75 | 12 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvEC2ES3_ Line | Count | Source | 75 | 4 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2ES3_ TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 21.6k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2ES3_ TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 582 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ES3_ Line | Count | Source | 75 | 725 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 25 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2ES3_ Line | Count | Source | 75 | 20.1k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2ES3_ TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvEC2ES3_ Line | Count | Source | 75 | 66 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvEC2ES3_ Line | Count | Source | 75 | 28.0k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ES3_ TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvEC2ES3_ Line | Count | Source | 75 | 63 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEC2ES3_ Line | Count | Source | 75 | 253 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEC2ES3_ Line | Count | Source | 75 | 827 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEC2ES3_ Line | Count | Source | 75 | 827 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEC2ES3_ Line | Count | Source | 75 | 253 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ES3_ Line | Count | Source | 75 | 8.35k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2ES3_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ES3_ ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ES3_ Line | Count | Source | 75 | 99.1k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEC2ES3_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ES3_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ES3_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ES3_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ES3_ Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ES3_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvEC2ES3_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ES3_ Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2ES3_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 97.2k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEC2ES3_ Line | Count | Source | 75 | 4 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEC2ES3_ Line | Count | Source | 75 | 4 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEC2ES3_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEC2ES3_ Line | Count | Source | 75 | 4 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEC2ES3_ Line | Count | Source | 75 | 4 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ES3_ Line | Count | Source | 75 | 24 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvEC2ES3_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvEC2ES3_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEC2ES3_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEC2ES3_ Line | Count | Source | 75 | 920 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEC2ES3_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEC2ES3_ Line | Count | Source | 75 | 292 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEC2ES3_ Line | Count | Source | 75 | 808 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvEC2ES3_ Line | Count | Source | 75 | 374 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEC2ES3_ Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEC2ES3_ Line | Count | Source | 75 | 612 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvEC2ES3_ Line | Count | Source | 75 | 69.2k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvEC2ES3_ Line | Count | Source | 75 | 540k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2ES3_ Line | Count | Source | 75 | 209k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2ES3_ Line | Count | Source | 75 | 247 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ES3_ Line | Count | Source | 75 | 157k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvEC2ES3_ Line | Count | Source | 75 | 45 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvEC2ES3_ Line | Count | Source | 75 | 812 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvEC2ES3_ Line | Count | Source | 75 | 95 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEC2ES3_ Line | Count | Source | 75 | 2 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 92 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvEC2ES3_ Line | Count | Source | 75 | 662 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEC2ES3_ Line | Count | Source | 75 | 22 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEC2ES3_ Line | Count | Source | 75 | 98 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvEC2ES3_ Line | Count | Source | 75 | 449 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2ES3_ Line | Count | Source | 75 | 7.23k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvEC2ES3_ Line | Count | Source | 75 | 40 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvEC2ES3_ Line | Count | Source | 75 | 43 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvEC2ES3_ Line | Count | Source | 75 | 370 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ES3_ Line | Count | Source | 75 | 15.4k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2ES3_ Line | Count | Source | 75 | 112 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 4 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvEC2ES3_ Line | Count | Source | 75 | 594 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvEC2ES3_ Line | Count | Source | 75 | 14 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsEscapableRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvEC2ES3_ Line | Count | Source | 75 | 478 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvEC2ES3_ Line | Count | Source | 75 | 132k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 4.26k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvEC2ES3_ Line | Count | Source | 75 | 5 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvEC2ES3_ Line | Count | Source | 75 | 7.73k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvEC2ES3_ Line | Count | Source | 75 | 1.32k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvEC2ES3_ Line | Count | Source | 75 | 1.33k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEC2ES3_ Line | Count | Source | 75 | 820 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEC2ES3_ Line | Count | Source | 75 | 36 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvEC2ES3_ Line | Count | Source | 75 | 17.9k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvEC2ES3_ Line | Count | Source | 75 | 22.1k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 46 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 28.8k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 8.05k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvEC2ES3_ Line | Count | Source | 75 | 1.61k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEC2ES3_ Line | Count | Source | 75 | 741 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEC2ES3_ Line | Count | Source | 75 | 484 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvEC2ES3_ Line | Count | Source | 75 | 1.90k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvEC2ES3_ Line | Count | Source | 75 | 335 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvEC2ES3_ Line | Count | Source | 75 | 22 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvEC2ES3_ Line | Count | Source | 75 | 276 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEC2ES3_ Line | Count | Source | 75 | 2 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvEC2ES3_ Line | Count | Source | 75 | 14 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvEC2ES3_ Line | Count | Source | 75 | 793 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2ES3_ Line | Count | Source | 75 | 676 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvEC2ES3_ Line | Count | Source | 75 | 7 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvEC2ES3_ Line | Count | Source | 75 | 24 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 65 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvEC2ES3_ Line | Count | Source | 75 | 6 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEC2ES3_ Line | Count | Source | 75 | 1 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvEC2ES3_ Line | Count | Source | 75 | 230 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvEC2ES3_ Line | Count | Source | 75 | 462 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvEC2ES3_ Line | Count | Source | 75 | 461 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvEC2ES3_ Line | Count | Source | 75 | 8.44k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvEC2ES3_ Line | Count | Source | 75 | 25 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2ES3_ Line | Count | Source | 75 | 514 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ES3_ Line | Count | Source | 75 | 20 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvEC2ES3_ Line | Count | Source | 75 | 24 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvEC2ES3_ Line | Count | Source | 75 | 52.4k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2ES3_ Line | Count | Source | 75 | 271k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvEC2ES3_ Line | Count | Source | 75 | 259 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvEC2ES3_ Line | Count | Source | 75 | 8 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2ES3_ Line | Count | Source | 75 | 246k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 1.17k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 1.14k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ES3_ Line | Count | Source | 75 | 64.8k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2ES3_ Line | Count | Source | 75 | 19.5k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvEC2ES3_ Line | Count | Source | 75 | 24.2k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2ES3_ Line | Count | Source | 75 | 5 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvEC2ES3_ Line | Count | Source | 75 | 22 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 17.9k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvEC2ES3_ Line | Count | Source | 75 | 68.5k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 909 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2ES3_ Line | Count | Source | 75 | 433 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEC2ES3_ Line | Count | Source | 75 | 1.27k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvEC2ES3_ Line | Count | Source | 75 | 2.17k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvEC2ES3_ Line | Count | Source | 75 | 92 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2ES3_ Line | Count | Source | 75 | 65.1k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ES3_ Line | Count | Source | 75 | 34.2k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvEC2ES3_ Line | Count | Source | 75 | 14.3k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2ES3_ Line | Count | Source | 75 | 4.15k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvEC2ES3_ Line | Count | Source | 75 | 121k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2ES3_ Line | Count | Source | 75 | 12 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvEC2ES3_ Line | Count | Source | 75 | 68.0k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ES3_ Line | Count | Source | 75 | 10.5k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvEC2ES3_ Line | Count | Source | 75 | 9.01k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvEC2ES3_ Line | Count | Source | 75 | 6.74k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEC2ES3_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEC2ES3_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEC2ES3_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEC2ES3_ DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEC2ES3_ Line | Count | Source | 75 | 8 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvEC2ES3_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEC2ES3_ DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEC2ES3_ Line | Count | Source | 75 | 4 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvEC2ES3_ Line | Count | Source | 75 | 1.89k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEC2ES3_ Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvEC2ES3_ Line | Count | Source | 75 | 19.2k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvEC2ES3_ Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvEC2ES3_ Line | Count | Source | 75 | 2.48k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ES3_ Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2ES3_ Line | Count | Source | 75 | 2.89k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2ES3_ Line | Count | Source | 75 | 3.76k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvEC2ES3_ Line | Count | Source | 75 | 11 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvEC2ES3_ Line | Count | Source | 75 | 268 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvEC2ES3_ Line | Count | Source | 75 | 210 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2ES3_ Line | Count | Source | 75 | 9 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ES3_ Line | Count | Source | 75 | 8.88k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39ImplicitKnownProtocolConformanceRequestEvEC2ES3_ Line | Count | Source | 75 | 4.19k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEC2ES3_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2ES3_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvEC2ES3_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvEC2ES3_ Line | Count | Source | 75 | 135k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvEC2ES3_ Line | Count | Source | 75 | 224 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvEC2ES3_ Line | Count | Source | 75 | 843 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvEC2ES3_ Line | Count | Source | 75 | 569 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvEC2ES3_ Line | Count | Source | 75 | 100 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ES3_ Line | Count | Source | 75 | 8.49k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ES3_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2ES3_ Line | Count | Source | 75 | 75.3k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2ES3_ Line | Count | Source | 75 | 187 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvEC2ES3_ Line | Count | Source | 75 | 77 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEC2ES3_ Line | Count | Source | 75 | 5.17k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2ES3_ Line | Count | Source | 75 | 149 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvEC2ES3_ Line | Count | Source | 75 | 1.94k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvEC2ES3_ Line | Count | Source | 75 | 8 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvEC2ES3_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvEC2ES3_ Line | Count | Source | 75 | 553 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvEC2ES3_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvEC2ES3_ Line | Count | Source | 75 | 18.1k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvEC2ES3_ Line | Count | Source | 75 | 62 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvEC2ES3_ Line | Count | Source | 75 | 610 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvEC2ES3_ Line | Count | Source | 75 | 3 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvEC2ES3_ Line | Count | Source | 75 | 12.5k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvEC2ES3_ Line | Count | Source | 75 | 7.76k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2ES3_ Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvEC2ES3_ Line | Count | Source | 75 | 12.7k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvEC2ES3_ Line | Count | Source | 75 | 171 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvEC2ES3_ Line | Count | Source | 75 | 82 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20IsNoncopyableRequestEvEC2ES3_ TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvEC2ES3_ Line | Count | Source | 75 | 8.52k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEC2ES3_ Line | Count | Source | 75 | 26.0k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2ES3_ |
76 | | |
77 | 12.3M | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { |
78 | 12.3M | if (Kind == StorageKind::Normal) |
79 | 0 | new (&Req) Request(other.Req); |
80 | 12.3M | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2ERKS4_ ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2ERKS4_ Line | Count | Source | 77 | 34.1k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 34.1k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 34.1k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2ERKS4_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvEC2ERKS4_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ERKS4_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvEC2ERKS4_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ERKS4_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2ERKS4_ IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvEC2ERKS4_ Line | Count | Source | 77 | 3.13k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 3.13k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 3.13k | } |
SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2ERKS4_ Line | Count | Source | 77 | 4.99k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 4.99k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 4.99k | } |
Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2ERKS4_ Line | Count | Source | 77 | 960 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 960 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 960 | } |
Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2ERKS4_ Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2ERKS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2ERKS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvEC2ERKS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2ERKS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvEC2ERKS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2ERKS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ERKS4_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2ERKS4_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvEC2ERKS4_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2ERKS4_ CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvEC2ERKS4_ Line | Count | Source | 77 | 47.8k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 47.8k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 47.8k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvEC2ERKS4_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2ERKS4_ CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvEC2ERKS4_ Line | Count | Source | 77 | 9.85k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 9.85k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 9.85k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEC2ERKS4_ Line | Count | Source | 77 | 11.7k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 11.7k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 11.7k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEC2ERKS4_ Line | Count | Source | 77 | 7.04k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 7.04k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 7.04k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2ERKS4_ ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvEC2ERKS4_ Line | Count | Source | 77 | 5.31k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 5.31k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 5.31k | } |
DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2ERKS4_ Line | Count | Source | 77 | 3.13k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 3.13k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 3.13k | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2ERKS4_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsCCompatibleFuncDeclRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ERKS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ERKS4_ TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvEC2ERKS4_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvEC2ERKS4_ Line | Count | Source | 77 | 18.7k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 18.7k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 18.7k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ERKS4_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2ERKS4_ Line | Count | Source | 77 | 31.2k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 31.2k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 31.2k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2ERKS4_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvEC2ERKS4_ Line | Count | Source | 77 | 11.2k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 11.2k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 11.2k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ERKS4_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvEC2ERKS4_ Line | Count | Source | 77 | 556k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 556k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 556k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2ERKS4_ TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 3.07k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 3.07k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 3.07k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvEC2ERKS4_ TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2ERKS4_ TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 79.3k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 79.3k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 79.3k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2ERKS4_ TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 3.39k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 3.39k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 3.39k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ERKS4_ Line | Count | Source | 77 | 2.75k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 2.75k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 2.75k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2ERKS4_ Line | Count | Source | 77 | 71.6k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 71.6k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 71.6k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2ERKS4_ TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvEC2ERKS4_ Line | Count | Source | 77 | 704 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 704 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 704 | } |
TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvEC2ERKS4_ Line | Count | Source | 77 | 102k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 102k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 102k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ERKS4_ TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvEC2ERKS4_ Line | Count | Source | 77 | 4.03k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 4.03k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 4.03k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 16.1k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 16.1k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 16.1k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 16.8k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 16.8k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 16.8k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEC2ERKS4_ Line | Count | Source | 77 | 16.8k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 16.8k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 16.8k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 16.1k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 16.1k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 16.1k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ERKS4_ Line | Count | Source | 77 | 36.6k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 36.6k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 36.6k | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2ERKS4_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ERKS4_ ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ERKS4_ Line | Count | Source | 77 | 345k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 345k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 345k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEC2ERKS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ERKS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ERKS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ERKS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ERKS4_ Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ERKS4_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvEC2ERKS4_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ERKS4_ Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2ERKS4_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 347k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 347k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 347k | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEC2ERKS4_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvEC2ERKS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvEC2ERKS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEC2ERKS4_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEC2ERKS4_ Line | Count | Source | 77 | 3.52k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 3.52k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 3.52k | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEC2ERKS4_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEC2ERKS4_ Line | Count | Source | 77 | 2.75k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 2.75k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 2.75k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEC2ERKS4_ Line | Count | Source | 77 | 5.12k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 5.12k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 5.12k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvEC2ERKS4_ Line | Count | Source | 77 | 4.99k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 4.99k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 4.99k | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEC2ERKS4_ Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEC2ERKS4_ Line | Count | Source | 77 | 2.17k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 2.17k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 2.17k | } |
Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvEC2ERKS4_ Line | Count | Source | 77 | 275k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 275k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 275k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvEC2ERKS4_ Line | Count | Source | 77 | 2.14M | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 2.14M | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 2.14M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2ERKS4_ Line | Count | Source | 77 | 826k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 826k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 826k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.34k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.34k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.34k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 660k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 660k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 660k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvEC2ERKS4_ Line | Count | Source | 77 | 3.52k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 3.52k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 3.52k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.53k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.53k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.53k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEC2ERKS4_ Line | Count | Source | 77 | 128 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 128 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 128 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.47k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.47k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.47k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvEC2ERKS4_ Line | Count | Source | 77 | 3.58k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 3.58k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 3.58k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEC2ERKS4_ Line | Count | Source | 77 | 640 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 640 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 640 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 2.43k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 2.43k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 2.43k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2ERKS4_ Line | Count | Source | 77 | 28.4k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 28.4k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 28.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvEC2ERKS4_ Line | Count | Source | 77 | 2.17k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 2.17k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 2.17k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 56.6k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 56.6k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 56.6k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.08k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.08k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.08k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.98k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.98k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.98k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvEC2ERKS4_ Line | Count | Source | 77 | 128 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 128 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 128 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsEscapableRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.66k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.66k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.66k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvEC2ERKS4_ Line | Count | Source | 77 | 479k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 479k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 479k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 14.5k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 14.5k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 14.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 29.2k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 29.2k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 29.2k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 8.76k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 8.76k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 8.76k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 8.76k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 8.76k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 8.76k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEC2ERKS4_ Line | Count | Source | 77 | 5.44k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 5.44k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 5.44k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.21k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.21k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.21k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 66.4k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 66.4k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 66.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 80.5k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 80.5k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 80.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.08k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.08k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.08k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 102k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 102k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 102k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 23.8k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 23.8k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 23.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvEC2ERKS4_ Line | Count | Source | 77 | 10.8k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 10.8k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 10.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEC2ERKS4_ Line | Count | Source | 77 | 6.46k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 6.46k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 6.46k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEC2ERKS4_ Line | Count | Source | 77 | 5.63k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 5.63k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 5.63k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvEC2ERKS4_ Line | Count | Source | 77 | 11.5k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 11.5k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 11.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvEC2ERKS4_ Line | Count | Source | 77 | 5.31k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 5.31k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 5.31k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvEC2ERKS4_ Line | Count | Source | 77 | 768 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 768 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 768 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 2.88k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 2.88k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 2.88k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEC2ERKS4_ Line | Count | Source | 77 | 128 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 128 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 128 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 8.83k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 8.83k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 8.83k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2ERKS4_ Line | Count | Source | 77 | 4.80k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 4.80k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 4.80k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 704 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 704 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 704 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 640 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 640 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 640 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 3.07k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 3.07k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 3.07k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 5.95k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 5.95k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 5.95k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 5.95k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 5.95k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 5.95k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 24.3k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 24.3k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 24.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvEC2ERKS4_ Line | Count | Source | 77 | 704 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 704 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 704 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 5.12k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 5.12k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 5.12k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 197k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 197k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 197k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2ERKS4_ Line | Count | Source | 77 | 1.00M | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.00M | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.00M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.79k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.79k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.79k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2ERKS4_ Line | Count | Source | 77 | 966k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 966k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 966k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 6.52k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 6.52k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 6.52k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 6.52k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 6.52k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 6.52k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 238k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 238k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 238k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2ERKS4_ Line | Count | Source | 77 | 75.6k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 75.6k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 75.6k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvEC2ERKS4_ Line | Count | Source | 77 | 88.8k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 88.8k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 88.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvEC2ERKS4_ Line | Count | Source | 77 | 384 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 384 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 384 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64.9k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64.9k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64.9k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvEC2ERKS4_ Line | Count | Source | 77 | 261k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 261k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 261k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 4.54k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 4.54k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 4.54k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.28k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.28k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.28k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEC2ERKS4_ Line | Count | Source | 77 | 4.54k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 4.54k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 4.54k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvEC2ERKS4_ Line | Count | Source | 77 | 8.76k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 8.76k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 8.76k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvEC2ERKS4_ Line | Count | Source | 77 | 384 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 384 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 384 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 239k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 239k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 239k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ERKS4_ Line | Count | Source | 77 | 126k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 126k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 126k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvEC2ERKS4_ Line | Count | Source | 77 | 9.79k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 9.79k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 9.79k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2ERKS4_ Line | Count | Source | 77 | 13.4k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 13.4k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 13.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvEC2ERKS4_ Line | Count | Source | 77 | 446k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 446k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 446k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvEC2ERKS4_ Line | Count | Source | 77 | 264k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 264k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 264k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ERKS4_ Line | Count | Source | 77 | 40.0k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 40.0k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 40.0k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvEC2ERKS4_ Line | Count | Source | 77 | 34.7k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 34.7k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 34.7k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvEC2ERKS4_ Line | Count | Source | 77 | 27.4k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 27.4k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 27.4k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEC2ERKS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEC2ERKS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEC2ERKS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEC2ERKS4_ DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvEC2ERKS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEC2ERKS4_ DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvEC2ERKS4_ Line | Count | Source | 77 | 6.72k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 6.72k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 6.72k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEC2ERKS4_ Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvEC2ERKS4_ Line | Count | Source | 77 | 69.7k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 69.7k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 69.7k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvEC2ERKS4_ Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvEC2ERKS4_ Line | Count | Source | 77 | 8.06k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 8.06k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 8.06k | } |
Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ERKS4_ Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 13.8k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 13.8k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 13.8k | } |
GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2ERKS4_ Line | Count | Source | 77 | 18.6k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 18.6k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 18.6k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvEC2ERKS4_ Line | Count | Source | 77 | 704 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 704 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 704 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 17.1k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 17.1k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 17.1k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 13.4k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 13.4k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 13.4k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ERKS4_ Line | Count | Source | 77 | 33.1k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 33.1k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 33.1k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39ImplicitKnownProtocolConformanceRequestEvEC2ERKS4_ Line | Count | Source | 77 | 19.3k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 19.3k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 19.3k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEC2ERKS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2ERKS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvEC2ERKS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 490k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 490k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 490k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvEC2ERKS4_ Line | Count | Source | 77 | 4.99k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 4.99k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 4.99k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 17.0k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 17.0k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 17.0k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvEC2ERKS4_ Line | Count | Source | 77 | 15.7k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 15.7k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 15.7k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvEC2ERKS4_ Line | Count | Source | 77 | 6.40k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 6.40k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 6.40k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ERKS4_ Line | Count | Source | 77 | 32.8k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 32.8k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 32.8k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ERKS4_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2ERKS4_ Line | Count | Source | 77 | 289k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 289k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 289k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2ERKS4_ Line | Count | Source | 77 | 2.11k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 2.11k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 2.11k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.53k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.53k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.53k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 18.8k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 18.8k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 18.8k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 832 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 832 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 832 | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 16.0k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 16.0k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 16.0k | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 384 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 384 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 384 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvEC2ERKS4_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvEC2ERKS4_ Line | Count | Source | 77 | 9.66k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 9.66k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 9.66k | } |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvEC2ERKS4_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 66.4k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 66.4k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 66.4k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.34k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.34k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.34k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvEC2ERKS4_ Line | Count | Source | 77 | 3.07k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 3.07k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 3.07k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvEC2ERKS4_ Line | Count | Source | 77 | 128 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 128 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 128 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvEC2ERKS4_ Line | Count | Source | 77 | 46.3k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 46.3k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 46.3k | } |
RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvEC2ERKS4_ Line | Count | Source | 77 | 30.7k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 30.7k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 30.7k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2ERKS4_ Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvEC2ERKS4_ Line | Count | Source | 77 | 48.2k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 48.2k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 48.2k | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.02k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.02k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.02k | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvEC2ERKS4_ Line | Count | Source | 77 | 768 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 768 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 768 | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20IsNoncopyableRequestEvEC2ERKS4_ TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvEC2ERKS4_ Line | Count | Source | 77 | 31.7k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 31.7k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 31.7k | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 110k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 110k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 110k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2ERKS4_ |
81 | 10.5M | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { |
82 | 10.5M | if (Kind == StorageKind::Normal) |
83 | 10.5M | new (&Req) Request(std::move(other.Req)); |
84 | 10.5M | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2EOS4_ ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2EOS4_ Line | Count | Source | 81 | 28.4k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 28.4k | if (Kind == StorageKind::Normal) | 83 | 28.4k | new (&Req) Request(std::move(other.Req)); | 84 | 28.4k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2EOS4_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvEC2EOS4_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2EOS4_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvEC2EOS4_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2EOS4_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2EOS4_ IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvEC2EOS4_ Line | Count | Source | 81 | 98 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 98 | if (Kind == StorageKind::Normal) | 83 | 98 | new (&Req) Request(std::move(other.Req)); | 84 | 98 | } |
SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2EOS4_ Line | Count | Source | 81 | 156 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 156 | if (Kind == StorageKind::Normal) | 83 | 156 | new (&Req) Request(std::move(other.Req)); | 84 | 156 | } |
Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2EOS4_ Line | Count | Source | 81 | 176 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 176 | if (Kind == StorageKind::Normal) | 83 | 176 | new (&Req) Request(std::move(other.Req)); | 84 | 176 | } |
Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2EOS4_ Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2EOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2EOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvEC2EOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2EOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvEC2EOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2EOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2EOS4_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2EOS4_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvEC2EOS4_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2EOS4_ CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvEC2EOS4_ Line | Count | Source | 81 | 41.0k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 41.0k | if (Kind == StorageKind::Normal) | 83 | 41.0k | new (&Req) Request(std::move(other.Req)); | 84 | 41.0k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvEC2EOS4_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2EOS4_ CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvEC2EOS4_ Line | Count | Source | 81 | 6.71k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 6.71k | if (Kind == StorageKind::Normal) | 83 | 6.71k | new (&Req) Request(std::move(other.Req)); | 84 | 6.71k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEC2EOS4_ Line | Count | Source | 81 | 4.34k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4.34k | if (Kind == StorageKind::Normal) | 83 | 4.34k | new (&Req) Request(std::move(other.Req)); | 84 | 4.34k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.80k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.80k | if (Kind == StorageKind::Normal) | 83 | 1.80k | new (&Req) Request(std::move(other.Req)); | 84 | 1.80k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2EOS4_ ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.65k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.65k | if (Kind == StorageKind::Normal) | 83 | 1.65k | new (&Req) Request(std::move(other.Req)); | 84 | 1.65k | } |
DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2EOS4_ Line | Count | Source | 81 | 961 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 961 | if (Kind == StorageKind::Normal) | 83 | 961 | new (&Req) Request(std::move(other.Req)); | 84 | 961 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2EOS4_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsCCompatibleFuncDeclRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2EOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2EOS4_ TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvEC2EOS4_ Line | Count | Source | 81 | 16 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 16 | if (Kind == StorageKind::Normal) | 83 | 16 | new (&Req) Request(std::move(other.Req)); | 84 | 16 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvEC2EOS4_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvEC2EOS4_ Line | Count | Source | 81 | 11.9k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 11.9k | if (Kind == StorageKind::Normal) | 83 | 11.9k | new (&Req) Request(std::move(other.Req)); | 84 | 11.9k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2EOS4_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2EOS4_ Line | Count | Source | 81 | 23.4k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 23.4k | if (Kind == StorageKind::Normal) | 83 | 23.4k | new (&Req) Request(std::move(other.Req)); | 84 | 23.4k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2EOS4_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvEC2EOS4_ Line | Count | Source | 81 | 8.75k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8.75k | if (Kind == StorageKind::Normal) | 83 | 8.75k | new (&Req) Request(std::move(other.Req)); | 84 | 8.75k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2EOS4_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvEC2EOS4_ Line | Count | Source | 81 | 499k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 499k | if (Kind == StorageKind::Normal) | 83 | 499k | new (&Req) Request(std::move(other.Req)); | 84 | 499k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2EOS4_ TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 332 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 332 | if (Kind == StorageKind::Normal) | 83 | 332 | new (&Req) Request(std::move(other.Req)); | 84 | 332 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvEC2EOS4_ TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2EOS4_ Line | Count | Source | 81 | 24 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 24 | if (Kind == StorageKind::Normal) | 83 | 24 | new (&Req) Request(std::move(other.Req)); | 84 | 24 | } |
TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvEC2EOS4_ Line | Count | Source | 81 | 8 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8 | if (Kind == StorageKind::Normal) | 83 | 8 | new (&Req) Request(std::move(other.Req)); | 84 | 8 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2EOS4_ TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 67.3k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 67.3k | if (Kind == StorageKind::Normal) | 83 | 67.3k | new (&Req) Request(std::move(other.Req)); | 84 | 67.3k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2EOS4_ TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.30k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.30k | if (Kind == StorageKind::Normal) | 83 | 1.30k | new (&Req) Request(std::move(other.Req)); | 84 | 1.30k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2EOS4_ Line | Count | Source | 81 | 2.01k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 2.01k | if (Kind == StorageKind::Normal) | 83 | 2.01k | new (&Req) Request(std::move(other.Req)); | 84 | 2.01k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 50 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 50 | if (Kind == StorageKind::Normal) | 83 | 50 | new (&Req) Request(std::move(other.Req)); | 84 | 50 | } |
TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2EOS4_ Line | Count | Source | 81 | 62.8k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 62.8k | if (Kind == StorageKind::Normal) | 83 | 62.8k | new (&Req) Request(std::move(other.Req)); | 84 | 62.8k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2EOS4_ TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvEC2EOS4_ Line | Count | Source | 81 | 132 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 132 | if (Kind == StorageKind::Normal) | 83 | 132 | new (&Req) Request(std::move(other.Req)); | 84 | 132 | } |
TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvEC2EOS4_ Line | Count | Source | 81 | 89.5k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 89.5k | if (Kind == StorageKind::Normal) | 83 | 89.5k | new (&Req) Request(std::move(other.Req)); | 84 | 89.5k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2EOS4_ TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvEC2EOS4_ Line | Count | Source | 81 | 126 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 126 | if (Kind == StorageKind::Normal) | 83 | 126 | new (&Req) Request(std::move(other.Req)); | 84 | 126 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEC2EOS4_ Line | Count | Source | 81 | 506 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 506 | if (Kind == StorageKind::Normal) | 83 | 506 | new (&Req) Request(std::move(other.Req)); | 84 | 506 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.88k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.88k | if (Kind == StorageKind::Normal) | 83 | 1.88k | new (&Req) Request(std::move(other.Req)); | 84 | 1.88k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEC2EOS4_ Line | Count | Source | 81 | 1.88k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.88k | if (Kind == StorageKind::Normal) | 83 | 1.88k | new (&Req) Request(std::move(other.Req)); | 84 | 1.88k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEC2EOS4_ Line | Count | Source | 81 | 506 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 506 | if (Kind == StorageKind::Normal) | 83 | 506 | new (&Req) Request(std::move(other.Req)); | 84 | 506 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2EOS4_ Line | Count | Source | 81 | 25.2k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 25.2k | if (Kind == StorageKind::Normal) | 83 | 25.2k | new (&Req) Request(std::move(other.Req)); | 84 | 25.2k | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2EOS4_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2EOS4_ ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2EOS4_ Line | Count | Source | 81 | 321k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 321k | if (Kind == StorageKind::Normal) | 83 | 321k | new (&Req) Request(std::move(other.Req)); | 84 | 321k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEC2EOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2EOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2EOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2EOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2EOS4_ Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2EOS4_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvEC2EOS4_ Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2EOS4_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 318k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 318k | if (Kind == StorageKind::Normal) | 83 | 318k | new (&Req) Request(std::move(other.Req)); | 84 | 318k | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEC2EOS4_ Line | Count | Source | 81 | 8 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8 | if (Kind == StorageKind::Normal) | 83 | 8 | new (&Req) Request(std::move(other.Req)); | 84 | 8 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEC2EOS4_ Line | Count | Source | 81 | 8 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8 | if (Kind == StorageKind::Normal) | 83 | 8 | new (&Req) Request(std::move(other.Req)); | 84 | 8 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEC2EOS4_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEC2EOS4_ Line | Count | Source | 81 | 8 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8 | if (Kind == StorageKind::Normal) | 83 | 8 | new (&Req) Request(std::move(other.Req)); | 84 | 8 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEC2EOS4_ Line | Count | Source | 81 | 8 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8 | if (Kind == StorageKind::Normal) | 83 | 8 | new (&Req) Request(std::move(other.Req)); | 84 | 8 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2EOS4_ Line | Count | Source | 81 | 48 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 48 | if (Kind == StorageKind::Normal) | 83 | 48 | new (&Req) Request(std::move(other.Req)); | 84 | 48 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvEC2EOS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvEC2EOS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEC2EOS4_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.84k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.84k | if (Kind == StorageKind::Normal) | 83 | 1.84k | new (&Req) Request(std::move(other.Req)); | 84 | 1.84k | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEC2EOS4_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEC2EOS4_ Line | Count | Source | 81 | 631 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 631 | if (Kind == StorageKind::Normal) | 83 | 631 | new (&Req) Request(std::move(other.Req)); | 84 | 631 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEC2EOS4_ Line | Count | Source | 81 | 2.37k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 2.37k | if (Kind == StorageKind::Normal) | 83 | 2.37k | new (&Req) Request(std::move(other.Req)); | 84 | 2.37k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvEC2EOS4_ Line | Count | Source | 81 | 748 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 748 | if (Kind == StorageKind::Normal) | 83 | 748 | new (&Req) Request(std::move(other.Req)); | 84 | 748 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEC2EOS4_ Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.69k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.69k | if (Kind == StorageKind::Normal) | 83 | 1.69k | new (&Req) Request(std::move(other.Req)); | 84 | 1.69k | } |
Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvEC2EOS4_ Line | Count | Source | 81 | 236k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 236k | if (Kind == StorageKind::Normal) | 83 | 236k | new (&Req) Request(std::move(other.Req)); | 84 | 236k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvEC2EOS4_ Line | Count | Source | 81 | 1.87M | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.87M | if (Kind == StorageKind::Normal) | 83 | 1.87M | new (&Req) Request(std::move(other.Req)); | 84 | 1.87M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2EOS4_ Line | Count | Source | 81 | 720k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 720k | if (Kind == StorageKind::Normal) | 83 | 720k | new (&Req) Request(std::move(other.Req)); | 84 | 720k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2EOS4_ Line | Count | Source | 81 | 636 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 636 | if (Kind == StorageKind::Normal) | 83 | 636 | new (&Req) Request(std::move(other.Req)); | 84 | 636 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2EOS4_ Line | Count | Source | 81 | 555k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 555k | if (Kind == StorageKind::Normal) | 83 | 555k | new (&Req) Request(std::move(other.Req)); | 84 | 555k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvEC2EOS4_ Line | Count | Source | 81 | 90 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 90 | if (Kind == StorageKind::Normal) | 83 | 90 | new (&Req) Request(std::move(other.Req)); | 84 | 90 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvEC2EOS4_ Line | Count | Source | 81 | 2.14k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 2.14k | if (Kind == StorageKind::Normal) | 83 | 2.14k | new (&Req) Request(std::move(other.Req)); | 84 | 2.14k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvEC2EOS4_ Line | Count | Source | 81 | 190 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 190 | if (Kind == StorageKind::Normal) | 83 | 190 | new (&Req) Request(std::move(other.Req)); | 84 | 190 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEC2EOS4_ Line | Count | Source | 81 | 4 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4 | if (Kind == StorageKind::Normal) | 83 | 4 | new (&Req) Request(std::move(other.Req)); | 84 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 184 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 184 | if (Kind == StorageKind::Normal) | 83 | 184 | new (&Req) Request(std::move(other.Req)); | 84 | 184 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.46k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.46k | if (Kind == StorageKind::Normal) | 83 | 1.46k | new (&Req) Request(std::move(other.Req)); | 84 | 1.46k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEC2EOS4_ Line | Count | Source | 81 | 44 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 44 | if (Kind == StorageKind::Normal) | 83 | 44 | new (&Req) Request(std::move(other.Req)); | 84 | 44 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEC2EOS4_ Line | Count | Source | 81 | 243 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 243 | if (Kind == StorageKind::Normal) | 83 | 243 | new (&Req) Request(std::move(other.Req)); | 84 | 243 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.22k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.22k | if (Kind == StorageKind::Normal) | 83 | 1.22k | new (&Req) Request(std::move(other.Req)); | 84 | 1.22k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2EOS4_ Line | Count | Source | 81 | 22.6k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 22.6k | if (Kind == StorageKind::Normal) | 83 | 22.6k | new (&Req) Request(std::move(other.Req)); | 84 | 22.6k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvEC2EOS4_ Line | Count | Source | 81 | 80 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 80 | if (Kind == StorageKind::Normal) | 83 | 80 | new (&Req) Request(std::move(other.Req)); | 84 | 80 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvEC2EOS4_ Line | Count | Source | 81 | 86 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 86 | if (Kind == StorageKind::Normal) | 83 | 86 | new (&Req) Request(std::move(other.Req)); | 84 | 86 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvEC2EOS4_ Line | Count | Source | 81 | 929 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 929 | if (Kind == StorageKind::Normal) | 83 | 929 | new (&Req) Request(std::move(other.Req)); | 84 | 929 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2EOS4_ Line | Count | Source | 81 | 48.4k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 48.4k | if (Kind == StorageKind::Normal) | 83 | 48.4k | new (&Req) Request(std::move(other.Req)); | 84 | 48.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2EOS4_ Line | Count | Source | 81 | 224 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 224 | if (Kind == StorageKind::Normal) | 83 | 224 | new (&Req) Request(std::move(other.Req)); | 84 | 224 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 8 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8 | if (Kind == StorageKind::Normal) | 83 | 8 | new (&Req) Request(std::move(other.Req)); | 84 | 8 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.66k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.66k | if (Kind == StorageKind::Normal) | 83 | 1.66k | new (&Req) Request(std::move(other.Req)); | 84 | 1.66k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvEC2EOS4_ Line | Count | Source | 81 | 28 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 28 | if (Kind == StorageKind::Normal) | 83 | 28 | new (&Req) Request(std::move(other.Req)); | 84 | 28 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsEscapableRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.33k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.33k | if (Kind == StorageKind::Normal) | 83 | 1.33k | new (&Req) Request(std::move(other.Req)); | 84 | 1.33k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvEC2EOS4_ Line | Count | Source | 81 | 439k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 439k | if (Kind == StorageKind::Normal) | 83 | 439k | new (&Req) Request(std::move(other.Req)); | 84 | 439k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 12.5k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 12.5k | if (Kind == StorageKind::Normal) | 83 | 12.5k | new (&Req) Request(std::move(other.Req)); | 84 | 12.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvEC2EOS4_ Line | Count | Source | 81 | 10 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 10 | if (Kind == StorageKind::Normal) | 83 | 10 | new (&Req) Request(std::move(other.Req)); | 84 | 10 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvEC2EOS4_ Line | Count | Source | 81 | 20.1k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 20.1k | if (Kind == StorageKind::Normal) | 83 | 20.1k | new (&Req) Request(std::move(other.Req)); | 84 | 20.1k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvEC2EOS4_ Line | Count | Source | 81 | 2.93k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 2.93k | if (Kind == StorageKind::Normal) | 83 | 2.93k | new (&Req) Request(std::move(other.Req)); | 84 | 2.93k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvEC2EOS4_ Line | Count | Source | 81 | 2.94k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 2.94k | if (Kind == StorageKind::Normal) | 83 | 2.94k | new (&Req) Request(std::move(other.Req)); | 84 | 2.94k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.97k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.97k | if (Kind == StorageKind::Normal) | 83 | 1.97k | new (&Req) Request(std::move(other.Req)); | 84 | 1.97k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEC2EOS4_ Line | Count | Source | 81 | 72 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 72 | if (Kind == StorageKind::Normal) | 83 | 72 | new (&Req) Request(std::move(other.Req)); | 84 | 72 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvEC2EOS4_ Line | Count | Source | 81 | 54.4k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 54.4k | if (Kind == StorageKind::Normal) | 83 | 54.4k | new (&Req) Request(std::move(other.Req)); | 84 | 54.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvEC2EOS4_ Line | Count | Source | 81 | 66.8k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 66.8k | if (Kind == StorageKind::Normal) | 83 | 66.8k | new (&Req) Request(std::move(other.Req)); | 84 | 66.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 92 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 92 | if (Kind == StorageKind::Normal) | 83 | 92 | new (&Req) Request(std::move(other.Req)); | 84 | 92 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 89.5k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 89.5k | if (Kind == StorageKind::Normal) | 83 | 89.5k | new (&Req) Request(std::move(other.Req)); | 84 | 89.5k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 19.6k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 19.6k | if (Kind == StorageKind::Normal) | 83 | 19.6k | new (&Req) Request(std::move(other.Req)); | 84 | 19.6k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvEC2EOS4_ Line | Count | Source | 81 | 3.65k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 3.65k | if (Kind == StorageKind::Normal) | 83 | 3.65k | new (&Req) Request(std::move(other.Req)); | 84 | 3.65k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.57k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.57k | if (Kind == StorageKind::Normal) | 83 | 1.57k | new (&Req) Request(std::move(other.Req)); | 84 | 1.57k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEC2EOS4_ Line | Count | Source | 81 | 968 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 968 | if (Kind == StorageKind::Normal) | 83 | 968 | new (&Req) Request(std::move(other.Req)); | 84 | 968 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvEC2EOS4_ Line | Count | Source | 81 | 4.32k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4.32k | if (Kind == StorageKind::Normal) | 83 | 4.32k | new (&Req) Request(std::move(other.Req)); | 84 | 4.32k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvEC2EOS4_ Line | Count | Source | 81 | 670 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 670 | if (Kind == StorageKind::Normal) | 83 | 670 | new (&Req) Request(std::move(other.Req)); | 84 | 670 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvEC2EOS4_ Line | Count | Source | 81 | 44 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 44 | if (Kind == StorageKind::Normal) | 83 | 44 | new (&Req) Request(std::move(other.Req)); | 84 | 44 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvEC2EOS4_ Line | Count | Source | 81 | 599 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 599 | if (Kind == StorageKind::Normal) | 83 | 599 | new (&Req) Request(std::move(other.Req)); | 84 | 599 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEC2EOS4_ Line | Count | Source | 81 | 4 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4 | if (Kind == StorageKind::Normal) | 83 | 4 | new (&Req) Request(std::move(other.Req)); | 84 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvEC2EOS4_ Line | Count | Source | 81 | 28 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 28 | if (Kind == StorageKind::Normal) | 83 | 28 | new (&Req) Request(std::move(other.Req)); | 84 | 28 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.82k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.82k | if (Kind == StorageKind::Normal) | 83 | 1.82k | new (&Req) Request(std::move(other.Req)); | 84 | 1.82k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.54k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.54k | if (Kind == StorageKind::Normal) | 83 | 1.54k | new (&Req) Request(std::move(other.Req)); | 84 | 1.54k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvEC2EOS4_ Line | Count | Source | 81 | 14 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 14 | if (Kind == StorageKind::Normal) | 83 | 14 | new (&Req) Request(std::move(other.Req)); | 84 | 14 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvEC2EOS4_ Line | Count | Source | 81 | 48 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 48 | if (Kind == StorageKind::Normal) | 83 | 48 | new (&Req) Request(std::move(other.Req)); | 84 | 48 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 130 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 130 | if (Kind == StorageKind::Normal) | 83 | 130 | new (&Req) Request(std::move(other.Req)); | 84 | 130 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvEC2EOS4_ Line | Count | Source | 81 | 12 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 12 | if (Kind == StorageKind::Normal) | 83 | 12 | new (&Req) Request(std::move(other.Req)); | 84 | 12 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEC2EOS4_ Line | Count | Source | 81 | 2 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 2 | if (Kind == StorageKind::Normal) | 83 | 2 | new (&Req) Request(std::move(other.Req)); | 84 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvEC2EOS4_ Line | Count | Source | 81 | 460 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 460 | if (Kind == StorageKind::Normal) | 83 | 460 | new (&Req) Request(std::move(other.Req)); | 84 | 460 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvEC2EOS4_ Line | Count | Source | 81 | 924 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 924 | if (Kind == StorageKind::Normal) | 83 | 924 | new (&Req) Request(std::move(other.Req)); | 84 | 924 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvEC2EOS4_ Line | Count | Source | 81 | 922 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 922 | if (Kind == StorageKind::Normal) | 83 | 922 | new (&Req) Request(std::move(other.Req)); | 84 | 922 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvEC2EOS4_ Line | Count | Source | 81 | 20.3k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 20.3k | if (Kind == StorageKind::Normal) | 83 | 20.3k | new (&Req) Request(std::move(other.Req)); | 84 | 20.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvEC2EOS4_ Line | Count | Source | 81 | 50 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 50 | if (Kind == StorageKind::Normal) | 83 | 50 | new (&Req) Request(std::move(other.Req)); | 84 | 50 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.02k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.02k | if (Kind == StorageKind::Normal) | 83 | 1.02k | new (&Req) Request(std::move(other.Req)); | 84 | 1.02k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2EOS4_ Line | Count | Source | 81 | 40 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 40 | if (Kind == StorageKind::Normal) | 83 | 40 | new (&Req) Request(std::move(other.Req)); | 84 | 40 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvEC2EOS4_ Line | Count | Source | 81 | 48 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 48 | if (Kind == StorageKind::Normal) | 83 | 48 | new (&Req) Request(std::move(other.Req)); | 84 | 48 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvEC2EOS4_ Line | Count | Source | 81 | 172k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 172k | if (Kind == StorageKind::Normal) | 83 | 172k | new (&Req) Request(std::move(other.Req)); | 84 | 172k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2EOS4_ Line | Count | Source | 81 | 910k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 910k | if (Kind == StorageKind::Normal) | 83 | 910k | new (&Req) Request(std::move(other.Req)); | 84 | 910k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvEC2EOS4_ Line | Count | Source | 81 | 612 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 612 | if (Kind == StorageKind::Normal) | 83 | 612 | new (&Req) Request(std::move(other.Req)); | 84 | 612 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvEC2EOS4_ Line | Count | Source | 81 | 16 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 16 | if (Kind == StorageKind::Normal) | 83 | 16 | new (&Req) Request(std::move(other.Req)); | 84 | 16 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2EOS4_ Line | Count | Source | 81 | 848k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 848k | if (Kind == StorageKind::Normal) | 83 | 848k | new (&Req) Request(std::move(other.Req)); | 84 | 848k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 2.86k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 2.86k | if (Kind == StorageKind::Normal) | 83 | 2.86k | new (&Req) Request(std::move(other.Req)); | 84 | 2.86k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 2.81k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 2.81k | if (Kind == StorageKind::Normal) | 83 | 2.81k | new (&Req) Request(std::move(other.Req)); | 84 | 2.81k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2EOS4_ Line | Count | Source | 81 | 213k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 213k | if (Kind == StorageKind::Normal) | 83 | 213k | new (&Req) Request(std::move(other.Req)); | 84 | 213k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2EOS4_ Line | Count | Source | 81 | 62.5k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 62.5k | if (Kind == StorageKind::Normal) | 83 | 62.5k | new (&Req) Request(std::move(other.Req)); | 84 | 62.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvEC2EOS4_ Line | Count | Source | 81 | 76.7k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 76.7k | if (Kind == StorageKind::Normal) | 83 | 76.7k | new (&Req) Request(std::move(other.Req)); | 84 | 76.7k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2EOS4_ Line | Count | Source | 81 | 10 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 10 | if (Kind == StorageKind::Normal) | 83 | 10 | new (&Req) Request(std::move(other.Req)); | 84 | 10 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvEC2EOS4_ Line | Count | Source | 81 | 44 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 44 | if (Kind == StorageKind::Normal) | 83 | 44 | new (&Req) Request(std::move(other.Req)); | 84 | 44 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 54.7k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 54.7k | if (Kind == StorageKind::Normal) | 83 | 54.7k | new (&Req) Request(std::move(other.Req)); | 84 | 54.7k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvEC2EOS4_ Line | Count | Source | 81 | 229k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 229k | if (Kind == StorageKind::Normal) | 83 | 229k | new (&Req) Request(std::move(other.Req)); | 84 | 229k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 2.19k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 2.19k | if (Kind == StorageKind::Normal) | 83 | 2.19k | new (&Req) Request(std::move(other.Req)); | 84 | 2.19k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.19k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.19k | if (Kind == StorageKind::Normal) | 83 | 1.19k | new (&Req) Request(std::move(other.Req)); | 84 | 1.19k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEC2EOS4_ Line | Count | Source | 81 | 3.55k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 3.55k | if (Kind == StorageKind::Normal) | 83 | 3.55k | new (&Req) Request(std::move(other.Req)); | 84 | 3.55k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvEC2EOS4_ Line | Count | Source | 81 | 6.33k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 6.33k | if (Kind == StorageKind::Normal) | 83 | 6.33k | new (&Req) Request(std::move(other.Req)); | 84 | 6.33k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvEC2EOS4_ Line | Count | Source | 81 | 184 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 184 | if (Kind == StorageKind::Normal) | 83 | 184 | new (&Req) Request(std::move(other.Req)); | 84 | 184 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2EOS4_ Line | Count | Source | 81 | 213k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 213k | if (Kind == StorageKind::Normal) | 83 | 213k | new (&Req) Request(std::move(other.Req)); | 84 | 213k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2EOS4_ Line | Count | Source | 81 | 109k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 109k | if (Kind == StorageKind::Normal) | 83 | 109k | new (&Req) Request(std::move(other.Req)); | 84 | 109k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvEC2EOS4_ Line | Count | Source | 81 | 4.53k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4.53k | if (Kind == StorageKind::Normal) | 83 | 4.53k | new (&Req) Request(std::move(other.Req)); | 84 | 4.53k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2EOS4_ Line | Count | Source | 81 | 8.30k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8.30k | if (Kind == StorageKind::Normal) | 83 | 8.30k | new (&Req) Request(std::move(other.Req)); | 84 | 8.30k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvEC2EOS4_ Line | Count | Source | 81 | 403k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 403k | if (Kind == StorageKind::Normal) | 83 | 403k | new (&Req) Request(std::move(other.Req)); | 84 | 403k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2EOS4_ Line | Count | Source | 81 | 24 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 24 | if (Kind == StorageKind::Normal) | 83 | 24 | new (&Req) Request(std::move(other.Req)); | 84 | 24 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvEC2EOS4_ Line | Count | Source | 81 | 229k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 229k | if (Kind == StorageKind::Normal) | 83 | 229k | new (&Req) Request(std::move(other.Req)); | 84 | 229k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2EOS4_ Line | Count | Source | 81 | 31.7k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 31.7k | if (Kind == StorageKind::Normal) | 83 | 31.7k | new (&Req) Request(std::move(other.Req)); | 84 | 31.7k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvEC2EOS4_ Line | Count | Source | 81 | 25.9k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 25.9k | if (Kind == StorageKind::Normal) | 83 | 25.9k | new (&Req) Request(std::move(other.Req)); | 84 | 25.9k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvEC2EOS4_ Line | Count | Source | 81 | 19.7k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 19.7k | if (Kind == StorageKind::Normal) | 83 | 19.7k | new (&Req) Request(std::move(other.Req)); | 84 | 19.7k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEC2EOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEC2EOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEC2EOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEC2EOS4_ DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEC2EOS4_ Line | Count | Source | 81 | 16 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 16 | if (Kind == StorageKind::Normal) | 83 | 16 | new (&Req) Request(std::move(other.Req)); | 84 | 16 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvEC2EOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEC2EOS4_ DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEC2EOS4_ Line | Count | Source | 81 | 8 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8 | if (Kind == StorageKind::Normal) | 83 | 8 | new (&Req) Request(std::move(other.Req)); | 84 | 8 | } |
DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvEC2EOS4_ Line | Count | Source | 81 | 5.83k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 5.83k | if (Kind == StorageKind::Normal) | 83 | 5.83k | new (&Req) Request(std::move(other.Req)); | 84 | 5.83k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEC2EOS4_ Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvEC2EOS4_ Line | Count | Source | 81 | 60.0k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 60.0k | if (Kind == StorageKind::Normal) | 83 | 60.0k | new (&Req) Request(std::move(other.Req)); | 84 | 60.0k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvEC2EOS4_ Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvEC2EOS4_ Line | Count | Source | 81 | 7.04k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 7.04k | if (Kind == StorageKind::Normal) | 83 | 7.04k | new (&Req) Request(std::move(other.Req)); | 84 | 7.04k | } |
Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2EOS4_ Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2EOS4_ Line | Count | Source | 81 | 8.15k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8.15k | if (Kind == StorageKind::Normal) | 83 | 8.15k | new (&Req) Request(std::move(other.Req)); | 84 | 8.15k | } |
GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2EOS4_ Line | Count | Source | 81 | 9.47k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 9.47k | if (Kind == StorageKind::Normal) | 83 | 9.47k | new (&Req) Request(std::move(other.Req)); | 84 | 9.47k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvEC2EOS4_ Line | Count | Source | 81 | 22 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 22 | if (Kind == StorageKind::Normal) | 83 | 22 | new (&Req) Request(std::move(other.Req)); | 84 | 22 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvEC2EOS4_ Line | Count | Source | 81 | 536 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 536 | if (Kind == StorageKind::Normal) | 83 | 536 | new (&Req) Request(std::move(other.Req)); | 84 | 536 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvEC2EOS4_ Line | Count | Source | 81 | 420 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 420 | if (Kind == StorageKind::Normal) | 83 | 420 | new (&Req) Request(std::move(other.Req)); | 84 | 420 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2EOS4_ Line | Count | Source | 81 | 18 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 18 | if (Kind == StorageKind::Normal) | 83 | 18 | new (&Req) Request(std::move(other.Req)); | 84 | 18 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2EOS4_ Line | Count | Source | 81 | 24.2k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 24.2k | if (Kind == StorageKind::Normal) | 83 | 24.2k | new (&Req) Request(std::move(other.Req)); | 84 | 24.2k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39ImplicitKnownProtocolConformanceRequestEvEC2EOS4_ Line | Count | Source | 81 | 10.6k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 10.6k | if (Kind == StorageKind::Normal) | 83 | 10.6k | new (&Req) Request(std::move(other.Req)); | 84 | 10.6k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEC2EOS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2EOS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvEC2EOS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvEC2EOS4_ Line | Count | Source | 81 | 449k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 449k | if (Kind == StorageKind::Normal) | 83 | 449k | new (&Req) Request(std::move(other.Req)); | 84 | 449k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvEC2EOS4_ Line | Count | Source | 81 | 448 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 448 | if (Kind == StorageKind::Normal) | 83 | 448 | new (&Req) Request(std::move(other.Req)); | 84 | 448 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.92k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.92k | if (Kind == StorageKind::Normal) | 83 | 1.92k | new (&Req) Request(std::move(other.Req)); | 84 | 1.92k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.27k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.27k | if (Kind == StorageKind::Normal) | 83 | 1.27k | new (&Req) Request(std::move(other.Req)); | 84 | 1.27k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvEC2EOS4_ Line | Count | Source | 81 | 200 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 200 | if (Kind == StorageKind::Normal) | 83 | 200 | new (&Req) Request(std::move(other.Req)); | 84 | 200 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2EOS4_ Line | Count | Source | 81 | 25.1k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 25.1k | if (Kind == StorageKind::Normal) | 83 | 25.1k | new (&Req) Request(std::move(other.Req)); | 84 | 25.1k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2EOS4_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2EOS4_ Line | Count | Source | 81 | 252k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 252k | if (Kind == StorageKind::Normal) | 83 | 252k | new (&Req) Request(std::move(other.Req)); | 84 | 252k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2EOS4_ Line | Count | Source | 81 | 374 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 374 | if (Kind == StorageKind::Normal) | 83 | 374 | new (&Req) Request(std::move(other.Req)); | 84 | 374 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvEC2EOS4_ Line | Count | Source | 81 | 154 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 154 | if (Kind == StorageKind::Normal) | 83 | 154 | new (&Req) Request(std::move(other.Req)); | 84 | 154 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEC2EOS4_ Line | Count | Source | 81 | 12.9k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 12.9k | if (Kind == StorageKind::Normal) | 83 | 12.9k | new (&Req) Request(std::move(other.Req)); | 84 | 12.9k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2EOS4_ Line | Count | Source | 81 | 298 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 298 | if (Kind == StorageKind::Normal) | 83 | 298 | new (&Req) Request(std::move(other.Req)); | 84 | 298 | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvEC2EOS4_ Line | Count | Source | 81 | 4.88k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4.88k | if (Kind == StorageKind::Normal) | 83 | 4.88k | new (&Req) Request(std::move(other.Req)); | 84 | 4.88k | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvEC2EOS4_ Line | Count | Source | 81 | 16 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 16 | if (Kind == StorageKind::Normal) | 83 | 16 | new (&Req) Request(std::move(other.Req)); | 84 | 16 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvEC2EOS4_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.29k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.29k | if (Kind == StorageKind::Normal) | 83 | 1.29k | new (&Req) Request(std::move(other.Req)); | 84 | 1.29k | } |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvEC2EOS4_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvEC2EOS4_ Line | Count | Source | 81 | 55.4k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 55.4k | if (Kind == StorageKind::Normal) | 83 | 55.4k | new (&Req) Request(std::move(other.Req)); | 84 | 55.4k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvEC2EOS4_ Line | Count | Source | 81 | 124 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 124 | if (Kind == StorageKind::Normal) | 83 | 124 | new (&Req) Request(std::move(other.Req)); | 84 | 124 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.59k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.59k | if (Kind == StorageKind::Normal) | 83 | 1.59k | new (&Req) Request(std::move(other.Req)); | 84 | 1.59k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvEC2EOS4_ Line | Count | Source | 81 | 6 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 6 | if (Kind == StorageKind::Normal) | 83 | 6 | new (&Req) Request(std::move(other.Req)); | 84 | 6 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvEC2EOS4_ Line | Count | Source | 81 | 37.1k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 37.1k | if (Kind == StorageKind::Normal) | 83 | 37.1k | new (&Req) Request(std::move(other.Req)); | 84 | 37.1k | } |
RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvEC2EOS4_ Line | Count | Source | 81 | 26.2k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 26.2k | if (Kind == StorageKind::Normal) | 83 | 26.2k | new (&Req) Request(std::move(other.Req)); | 84 | 26.2k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2EOS4_ Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvEC2EOS4_ Line | Count | Source | 81 | 39.4k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 39.4k | if (Kind == StorageKind::Normal) | 83 | 39.4k | new (&Req) Request(std::move(other.Req)); | 84 | 39.4k | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvEC2EOS4_ Line | Count | Source | 81 | 389 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 389 | if (Kind == StorageKind::Normal) | 83 | 389 | new (&Req) Request(std::move(other.Req)); | 84 | 389 | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvEC2EOS4_ Line | Count | Source | 81 | 164 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 164 | if (Kind == StorageKind::Normal) | 83 | 164 | new (&Req) Request(std::move(other.Req)); | 84 | 164 | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20IsNoncopyableRequestEvEC2EOS4_ TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvEC2EOS4_ Line | Count | Source | 81 | 25.4k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 25.4k | if (Kind == StorageKind::Normal) | 83 | 25.4k | new (&Req) Request(std::move(other.Req)); | 84 | 25.4k | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEC2EOS4_ Line | Count | Source | 81 | 88.7k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 88.7k | if (Kind == StorageKind::Normal) | 83 | 88.7k | new (&Req) Request(std::move(other.Req)); | 84 | 88.7k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2EOS4_ |
85 | 0 | RequestKey &operator=(const RequestKey &other) { |
86 | 0 | if (&other != this) { |
87 | 0 | this->~RequestKey(); |
88 | 0 | new (this) RequestKey(other); |
89 | 0 | } |
90 | 0 | return *this; |
91 | 0 | } Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEaSERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvEaSERKS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvEaSERKS4_ |
92 | 7.36M | RequestKey &operator=(RequestKey &&other) { |
93 | 7.36M | if (&other != this) { |
94 | 7.36M | this->~RequestKey(); |
95 | 7.36M | new (this) RequestKey(std::move(other)); |
96 | 7.36M | } |
97 | 7.36M | return *this; |
98 | 7.36M | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18OptimizedIRRequestEvEaSEOS4_ Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEaSEOS4_ ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEaSEOS4_ Line | Count | Source | 92 | 20.1k | RequestKey &operator=(RequestKey &&other) { | 93 | 20.1k | if (&other != this) { | 94 | 20.1k | this->~RequestKey(); | 95 | 20.1k | new (this) RequestKey(std::move(other)); | 96 | 20.1k | } | 97 | 20.1k | return *this; | 98 | 20.1k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEaSEOS4_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvEaSEOS4_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEaSEOS4_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvEaSEOS4_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEaSEOS4_ IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvEaSEOS4_ Line | Count | Source | 92 | 49 | RequestKey &operator=(RequestKey &&other) { | 93 | 49 | if (&other != this) { | 94 | 49 | this->~RequestKey(); | 95 | 49 | new (this) RequestKey(std::move(other)); | 96 | 49 | } | 97 | 49 | return *this; | 98 | 49 | } |
Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17LoweredSILRequestEvEaSEOS4_ Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20PublicSymbolsRequestEvEaSEOS4_ Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18GenerateTBDRequestEvEaSEOS4_ Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13APIGenRequestEvEaSEOS4_ SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEaSEOS4_ Line | Count | Source | 92 | 78 | RequestKey &operator=(RequestKey &&other) { | 93 | 78 | if (&other != this) { | 94 | 78 | this->~RequestKey(); | 95 | 78 | new (this) RequestKey(std::move(other)); | 96 | 78 | } | 97 | 78 | return *this; | 98 | 78 | } |
Unexecuted instantiation: SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParseSILModuleRequestEvEaSEOS4_ Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEaSEOS4_ Line | Count | Source | 92 | 88 | RequestKey &operator=(RequestKey &&other) { | 93 | 88 | if (&other != this) { | 94 | 88 | this->~RequestKey(); | 95 | 88 | new (this) RequestKey(std::move(other)); | 96 | 88 | } | 97 | 88 | return *this; | 98 | 88 | } |
Unexecuted instantiation: PassManager.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExecuteSILPipelineRequestEvEaSEOS4_ Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEaSEOS4_ Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEaSEOS4_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEaSEOS4_ Unexecuted instantiation: ParseSIL.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvEaSEOS4_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvEaSEOS4_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEaSEOS4_ CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvEaSEOS4_ Line | Count | Source | 92 | 27.5k | RequestKey &operator=(RequestKey &&other) { | 93 | 27.5k | if (&other != this) { | 94 | 27.5k | this->~RequestKey(); | 95 | 27.5k | new (this) RequestKey(std::move(other)); | 96 | 27.5k | } | 97 | 27.5k | return *this; | 98 | 27.5k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvEaSEOS4_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEaSEOS4_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvEaSEOS4_ CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvEaSEOS4_ Line | Count | Source | 92 | 4.14k | RequestKey &operator=(RequestKey &&other) { | 93 | 4.14k | if (&other != this) { | 94 | 4.14k | this->~RequestKey(); | 95 | 4.14k | new (this) RequestKey(std::move(other)); | 96 | 4.14k | } | 97 | 4.14k | return *this; | 98 | 4.14k | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18CxxRecordSemanticsEvEaSEOS4_ CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEaSEOS4_ Line | Count | Source | 92 | 2.43k | RequestKey &operator=(RequestKey &&other) { | 93 | 2.43k | if (&other != this) { | 94 | 2.43k | this->~RequestKey(); | 95 | 2.43k | new (this) RequestKey(std::move(other)); | 96 | 2.43k | } | 97 | 2.43k | return *this; | 98 | 2.43k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEaSEOS4_ Line | Count | Source | 92 | 947 | RequestKey &operator=(RequestKey &&other) { | 93 | 947 | if (&other != this) { | 94 | 947 | this->~RequestKey(); | 95 | 947 | new (this) RequestKey(std::move(other)); | 96 | 947 | } | 97 | 947 | return *this; | 98 | 947 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEaSEOS4_ ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvEaSEOS4_ Line | Count | Source | 92 | 922 | RequestKey &operator=(RequestKey &&other) { | 93 | 922 | if (&other != this) { | 94 | 922 | this->~RequestKey(); | 95 | 922 | new (this) RequestKey(std::move(other)); | 96 | 922 | } | 97 | 922 | return *this; | 98 | 922 | } |
DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEaSEOS4_ Line | Count | Source | 92 | 504 | RequestKey &operator=(RequestKey &&other) { | 93 | 504 | if (&other != this) { | 94 | 504 | this->~RequestKey(); | 95 | 504 | new (this) RequestKey(std::move(other)); | 96 | 504 | } | 97 | 504 | return *this; | 98 | 504 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEaSEOS4_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEaSEOS4_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvEaSEOS4_ Unexecuted instantiation: MiscDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvEaSEOS4_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsCCompatibleFuncDeclRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasIsolatedSelfRequestEvEaSEOS4_ TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvEaSEOS4_ Line | Count | Source | 92 | 8 | RequestKey &operator=(RequestKey &&other) { | 93 | 8 | if (&other != this) { | 94 | 8 | this->~RequestKey(); | 95 | 8 | new (this) RequestKey(std::move(other)); | 96 | 8 | } | 97 | 8 | return *this; | 98 | 8 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvEaSEOS4_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvEaSEOS4_ Line | Count | Source | 92 | 7.76k | RequestKey &operator=(RequestKey &&other) { | 93 | 7.76k | if (&other != this) { | 94 | 7.76k | this->~RequestKey(); | 95 | 7.76k | new (this) RequestKey(std::move(other)); | 96 | 7.76k | } | 97 | 7.76k | return *this; | 98 | 7.76k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEaSEOS4_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEaSEOS4_ Line | Count | Source | 92 | 15.6k | RequestKey &operator=(RequestKey &&other) { | 93 | 15.6k | if (&other != this) { | 94 | 15.6k | this->~RequestKey(); | 95 | 15.6k | new (this) RequestKey(std::move(other)); | 96 | 15.6k | } | 97 | 15.6k | return *this; | 98 | 15.6k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEaSEOS4_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvEaSEOS4_ Line | Count | Source | 92 | 5.75k | RequestKey &operator=(RequestKey &&other) { | 93 | 5.75k | if (&other != this) { | 94 | 5.75k | this->~RequestKey(); | 95 | 5.75k | new (this) RequestKey(std::move(other)); | 96 | 5.75k | } | 97 | 5.75k | return *this; | 98 | 5.75k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEaSEOS4_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvEaSEOS4_ Line | Count | Source | 92 | 351k | RequestKey &operator=(RequestKey &&other) { | 93 | 351k | if (&other != this) { | 94 | 351k | this->~RequestKey(); | 95 | 351k | new (this) RequestKey(std::move(other)); | 96 | 351k | } | 97 | 351k | return *this; | 98 | 351k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEaSEOS4_ TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 166 | RequestKey &operator=(RequestKey &&other) { | 93 | 166 | if (&other != this) { | 94 | 166 | this->~RequestKey(); | 95 | 166 | new (this) RequestKey(std::move(other)); | 96 | 166 | } | 97 | 166 | return *this; | 98 | 166 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvEaSEOS4_ TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEaSEOS4_ Line | Count | Source | 92 | 12 | RequestKey &operator=(RequestKey &&other) { | 93 | 12 | if (&other != this) { | 94 | 12 | this->~RequestKey(); | 95 | 12 | new (this) RequestKey(std::move(other)); | 96 | 12 | } | 97 | 12 | return *this; | 98 | 12 | } |
TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvEaSEOS4_ Line | Count | Source | 92 | 4 | RequestKey &operator=(RequestKey &&other) { | 93 | 4 | if (&other != this) { | 94 | 4 | this->~RequestKey(); | 95 | 4 | new (this) RequestKey(std::move(other)); | 96 | 4 | } | 97 | 4 | return *this; | 98 | 4 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvEaSEOS4_ TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 45.6k | RequestKey &operator=(RequestKey &&other) { | 93 | 45.6k | if (&other != this) { | 94 | 45.6k | this->~RequestKey(); | 95 | 45.6k | new (this) RequestKey(std::move(other)); | 96 | 45.6k | } | 97 | 45.6k | return *this; | 98 | 45.6k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEaSEOS4_ TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 723 | RequestKey &operator=(RequestKey &&other) { | 93 | 723 | if (&other != this) { | 94 | 723 | this->~RequestKey(); | 95 | 723 | new (this) RequestKey(std::move(other)); | 96 | 723 | } | 97 | 723 | return *this; | 98 | 723 | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.29k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.29k | if (&other != this) { | 94 | 1.29k | this->~RequestKey(); | 95 | 1.29k | new (this) RequestKey(std::move(other)); | 96 | 1.29k | } | 97 | 1.29k | return *this; | 98 | 1.29k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 25 | RequestKey &operator=(RequestKey &&other) { | 93 | 25 | if (&other != this) { | 94 | 25 | this->~RequestKey(); | 95 | 25 | new (this) RequestKey(std::move(other)); | 96 | 25 | } | 97 | 25 | return *this; | 98 | 25 | } |
TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEaSEOS4_ Line | Count | Source | 92 | 42.6k | RequestKey &operator=(RequestKey &&other) { | 93 | 42.6k | if (&other != this) { | 94 | 42.6k | this->~RequestKey(); | 95 | 42.6k | new (this) RequestKey(std::move(other)); | 96 | 42.6k | } | 97 | 42.6k | return *this; | 98 | 42.6k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27PreCheckFunctionBodyRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEaSEOS4_ TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvEaSEOS4_ Line | Count | Source | 92 | 66 | RequestKey &operator=(RequestKey &&other) { | 93 | 66 | if (&other != this) { | 94 | 66 | this->~RequestKey(); | 95 | 66 | new (this) RequestKey(std::move(other)); | 96 | 66 | } | 97 | 66 | return *this; | 98 | 66 | } |
TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvEaSEOS4_ Line | Count | Source | 92 | 61.4k | RequestKey &operator=(RequestKey &&other) { | 93 | 61.4k | if (&other != this) { | 94 | 61.4k | this->~RequestKey(); | 95 | 61.4k | new (this) RequestKey(std::move(other)); | 96 | 61.4k | } | 97 | 61.4k | return *this; | 98 | 61.4k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ResolveTypeRequestEvEaSEOS4_ TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvEaSEOS4_ Line | Count | Source | 92 | 63 | RequestKey &operator=(RequestKey &&other) { | 93 | 63 | if (&other != this) { | 94 | 63 | this->~RequestKey(); | 95 | 63 | new (this) RequestKey(std::move(other)); | 96 | 63 | } | 97 | 63 | return *this; | 98 | 63 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEaSEOS4_ Line | Count | Source | 92 | 253 | RequestKey &operator=(RequestKey &&other) { | 93 | 253 | if (&other != this) { | 94 | 253 | this->~RequestKey(); | 95 | 253 | new (this) RequestKey(std::move(other)); | 96 | 253 | } | 97 | 253 | return *this; | 98 | 253 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.06k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.06k | if (&other != this) { | 94 | 1.06k | this->~RequestKey(); | 95 | 1.06k | new (this) RequestKey(std::move(other)); | 96 | 1.06k | } | 97 | 1.06k | return *this; | 98 | 1.06k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEaSEOS4_ Line | Count | Source | 92 | 1.06k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.06k | if (&other != this) { | 94 | 1.06k | this->~RequestKey(); | 95 | 1.06k | new (this) RequestKey(std::move(other)); | 96 | 1.06k | } | 97 | 1.06k | return *this; | 98 | 1.06k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEaSEOS4_ Line | Count | Source | 92 | 253 | RequestKey &operator=(RequestKey &&other) { | 93 | 253 | if (&other != this) { | 94 | 253 | this->~RequestKey(); | 95 | 253 | new (this) RequestKey(std::move(other)); | 96 | 253 | } | 97 | 253 | return *this; | 98 | 253 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEaSEOS4_ Line | Count | Source | 92 | 16.8k | RequestKey &operator=(RequestKey &&other) { | 93 | 16.8k | if (&other != this) { | 94 | 16.8k | this->~RequestKey(); | 95 | 16.8k | new (this) RequestKey(std::move(other)); | 96 | 16.8k | } | 97 | 16.8k | return *this; | 98 | 16.8k | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckASTNodeAtLocRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEaSEOS4_ Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvEaSEOS4_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEaSEOS4_ Line | Count | Source | 92 | 222k | RequestKey &operator=(RequestKey &&other) { | 93 | 222k | if (&other != this) { | 94 | 222k | this->~RequestKey(); | 95 | 222k | new (this) RequestKey(std::move(other)); | 96 | 222k | } | 97 | 222k | return *this; | 98 | 222k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEaSEOS4_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ClangDirectLookupRequestEvEaSEOS4_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvEaSEOS4_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ClangCategoryLookupRequestEvEaSEOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEaSEOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEaSEOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEaSEOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18CxxRecordSemanticsEvEaSEOS4_ Unexecuted instantiation: ImportName.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsSafeUseOfCxxDeclEvEaSEOS4_ Unexecuted instantiation: ImportType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20CxxRecordAsSwiftTypeEvEaSEOS4_ Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEaSEOS4_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvEaSEOS4_ Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEaSEOS4_ Unexecuted instantiation: AccessRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31TypeDeclsFromWhereClauseRequestEvEaSEOS4_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 220k | RequestKey &operator=(RequestKey &&other) { | 93 | 220k | if (&other != this) { | 94 | 220k | this->~RequestKey(); | 95 | 220k | new (this) RequestKey(std::move(other)); | 96 | 220k | } | 97 | 220k | return *this; | 98 | 220k | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEaSEOS4_ Line | Count | Source | 92 | 4 | RequestKey &operator=(RequestKey &&other) { | 93 | 4 | if (&other != this) { | 94 | 4 | this->~RequestKey(); | 95 | 4 | new (this) RequestKey(std::move(other)); | 96 | 4 | } | 97 | 4 | return *this; | 98 | 4 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEaSEOS4_ Line | Count | Source | 92 | 4 | RequestKey &operator=(RequestKey &&other) { | 93 | 4 | if (&other != this) { | 94 | 4 | this->~RequestKey(); | 95 | 4 | new (this) RequestKey(std::move(other)); | 96 | 4 | } | 97 | 4 | return *this; | 98 | 4 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEaSEOS4_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEaSEOS4_ Line | Count | Source | 92 | 4 | RequestKey &operator=(RequestKey &&other) { | 93 | 4 | if (&other != this) { | 94 | 4 | this->~RequestKey(); | 95 | 4 | new (this) RequestKey(std::move(other)); | 96 | 4 | } | 97 | 4 | return *this; | 98 | 4 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEaSEOS4_ Line | Count | Source | 92 | 4 | RequestKey &operator=(RequestKey &&other) { | 93 | 4 | if (&other != this) { | 94 | 4 | this->~RequestKey(); | 95 | 4 | new (this) RequestKey(std::move(other)); | 96 | 4 | } | 97 | 4 | return *this; | 98 | 4 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasIsolatedSelfRequestEvEaSEOS4_ Unexecuted instantiation: ASTPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ClangDirectLookupRequestEvEaSEOS4_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEaSEOS4_ Line | Count | Source | 92 | 24 | RequestKey &operator=(RequestKey &&other) { | 93 | 24 | if (&other != this) { | 94 | 24 | this->~RequestKey(); | 95 | 24 | new (this) RequestKey(std::move(other)); | 96 | 24 | } | 97 | 24 | return *this; | 98 | 24 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvEaSEOS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvEaSEOS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEaSEOS4_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEaSEOS4_ Line | Count | Source | 92 | 920 | RequestKey &operator=(RequestKey &&other) { | 93 | 920 | if (&other != this) { | 94 | 920 | this->~RequestKey(); | 95 | 920 | new (this) RequestKey(std::move(other)); | 96 | 920 | } | 97 | 920 | return *this; | 98 | 920 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEaSEOS4_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEaSEOS4_ Line | Count | Source | 92 | 339 | RequestKey &operator=(RequestKey &&other) { | 93 | 339 | if (&other != this) { | 94 | 339 | this->~RequestKey(); | 95 | 339 | new (this) RequestKey(std::move(other)); | 96 | 339 | } | 97 | 339 | return *this; | 98 | 339 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.56k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.56k | if (&other != this) { | 94 | 1.56k | this->~RequestKey(); | 95 | 1.56k | new (this) RequestKey(std::move(other)); | 96 | 1.56k | } | 97 | 1.56k | return *this; | 98 | 1.56k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvEaSEOS4_ Line | Count | Source | 92 | 374 | RequestKey &operator=(RequestKey &&other) { | 93 | 374 | if (&other != this) { | 94 | 374 | this->~RequestKey(); | 95 | 374 | new (this) RequestKey(std::move(other)); | 96 | 374 | } | 97 | 374 | return *this; | 98 | 374 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEaSEOS4_ Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.08k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.08k | if (&other != this) { | 94 | 1.08k | this->~RequestKey(); | 95 | 1.08k | new (this) RequestKey(std::move(other)); | 96 | 1.08k | } | 97 | 1.08k | return *this; | 98 | 1.08k | } |
Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvEaSEOS4_ Line | Count | Source | 92 | 167k | RequestKey &operator=(RequestKey &&other) { | 93 | 167k | if (&other != this) { | 94 | 167k | this->~RequestKey(); | 95 | 167k | new (this) RequestKey(std::move(other)); | 96 | 167k | } | 97 | 167k | return *this; | 98 | 167k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvEaSEOS4_ Line | Count | Source | 92 | 1.33M | RequestKey &operator=(RequestKey &&other) { | 93 | 1.33M | if (&other != this) { | 94 | 1.33M | this->~RequestKey(); | 95 | 1.33M | new (this) RequestKey(std::move(other)); | 96 | 1.33M | } | 97 | 1.33M | return *this; | 98 | 1.33M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEaSEOS4_ Line | Count | Source | 92 | 511k | RequestKey &operator=(RequestKey &&other) { | 93 | 511k | if (&other != this) { | 94 | 511k | this->~RequestKey(); | 95 | 511k | new (this) RequestKey(std::move(other)); | 96 | 511k | } | 97 | 511k | return *this; | 98 | 511k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEaSEOS4_ Line | Count | Source | 92 | 389 | RequestKey &operator=(RequestKey &&other) { | 93 | 389 | if (&other != this) { | 94 | 389 | this->~RequestKey(); | 95 | 389 | new (this) RequestKey(std::move(other)); | 96 | 389 | } | 97 | 389 | return *this; | 98 | 389 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEaSEOS4_ Line | Count | Source | 92 | 398k | RequestKey &operator=(RequestKey &&other) { | 93 | 398k | if (&other != this) { | 94 | 398k | this->~RequestKey(); | 95 | 398k | new (this) RequestKey(std::move(other)); | 96 | 398k | } | 97 | 398k | return *this; | 98 | 398k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvEaSEOS4_ Line | Count | Source | 92 | 45 | RequestKey &operator=(RequestKey &&other) { | 93 | 45 | if (&other != this) { | 94 | 45 | this->~RequestKey(); | 95 | 45 | new (this) RequestKey(std::move(other)); | 96 | 45 | } | 97 | 45 | return *this; | 98 | 45 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.33k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.33k | if (&other != this) { | 94 | 1.33k | this->~RequestKey(); | 95 | 1.33k | new (this) RequestKey(std::move(other)); | 96 | 1.33k | } | 97 | 1.33k | return *this; | 98 | 1.33k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvEaSEOS4_ Line | Count | Source | 92 | 95 | RequestKey &operator=(RequestKey &&other) { | 93 | 95 | if (&other != this) { | 94 | 95 | this->~RequestKey(); | 95 | 95 | new (this) RequestKey(std::move(other)); | 96 | 95 | } | 97 | 95 | return *this; | 98 | 95 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEaSEOS4_ Line | Count | Source | 92 | 2 | RequestKey &operator=(RequestKey &&other) { | 93 | 2 | if (&other != this) { | 94 | 2 | this->~RequestKey(); | 95 | 2 | new (this) RequestKey(std::move(other)); | 96 | 2 | } | 97 | 2 | return *this; | 98 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 92 | RequestKey &operator=(RequestKey &&other) { | 93 | 92 | if (&other != this) { | 94 | 92 | this->~RequestKey(); | 95 | 92 | new (this) RequestKey(std::move(other)); | 96 | 92 | } | 97 | 92 | return *this; | 98 | 92 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvEaSEOS4_ Line | Count | Source | 92 | 803 | RequestKey &operator=(RequestKey &&other) { | 93 | 803 | if (&other != this) { | 94 | 803 | this->~RequestKey(); | 95 | 803 | new (this) RequestKey(std::move(other)); | 96 | 803 | } | 97 | 803 | return *this; | 98 | 803 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEaSEOS4_ Line | Count | Source | 92 | 22 | RequestKey &operator=(RequestKey &&other) { | 93 | 22 | if (&other != this) { | 94 | 22 | this->~RequestKey(); | 95 | 22 | new (this) RequestKey(std::move(other)); | 96 | 22 | } | 97 | 22 | return *this; | 98 | 22 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEaSEOS4_ Line | Count | Source | 92 | 145 | RequestKey &operator=(RequestKey &&other) { | 93 | 145 | if (&other != this) { | 94 | 145 | this->~RequestKey(); | 95 | 145 | new (this) RequestKey(std::move(other)); | 96 | 145 | } | 97 | 145 | return *this; | 98 | 145 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvEaSEOS4_ Line | Count | Source | 92 | 780 | RequestKey &operator=(RequestKey &&other) { | 93 | 780 | if (&other != this) { | 94 | 780 | this->~RequestKey(); | 95 | 780 | new (this) RequestKey(std::move(other)); | 96 | 780 | } | 97 | 780 | return *this; | 98 | 780 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEaSEOS4_ Line | Count | Source | 92 | 15.4k | RequestKey &operator=(RequestKey &&other) { | 93 | 15.4k | if (&other != this) { | 94 | 15.4k | this->~RequestKey(); | 95 | 15.4k | new (this) RequestKey(std::move(other)); | 96 | 15.4k | } | 97 | 15.4k | return *this; | 98 | 15.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvEaSEOS4_ Line | Count | Source | 92 | 40 | RequestKey &operator=(RequestKey &&other) { | 93 | 40 | if (&other != this) { | 94 | 40 | this->~RequestKey(); | 95 | 40 | new (this) RequestKey(std::move(other)); | 96 | 40 | } | 97 | 40 | return *this; | 98 | 40 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvEaSEOS4_ Line | Count | Source | 92 | 43 | RequestKey &operator=(RequestKey &&other) { | 93 | 43 | if (&other != this) { | 94 | 43 | this->~RequestKey(); | 95 | 43 | new (this) RequestKey(std::move(other)); | 96 | 43 | } | 97 | 43 | return *this; | 98 | 43 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvEaSEOS4_ Line | Count | Source | 92 | 559 | RequestKey &operator=(RequestKey &&other) { | 93 | 559 | if (&other != this) { | 94 | 559 | this->~RequestKey(); | 95 | 559 | new (this) RequestKey(std::move(other)); | 96 | 559 | } | 97 | 559 | return *this; | 98 | 559 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEaSEOS4_ Line | Count | Source | 92 | 33.0k | RequestKey &operator=(RequestKey &&other) { | 93 | 33.0k | if (&other != this) { | 94 | 33.0k | this->~RequestKey(); | 95 | 33.0k | new (this) RequestKey(std::move(other)); | 96 | 33.0k | } | 97 | 33.0k | return *this; | 98 | 33.0k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEaSEOS4_ Line | Count | Source | 92 | 112 | RequestKey &operator=(RequestKey &&other) { | 93 | 112 | if (&other != this) { | 94 | 112 | this->~RequestKey(); | 95 | 112 | new (this) RequestKey(std::move(other)); | 96 | 112 | } | 97 | 112 | return *this; | 98 | 112 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 4 | RequestKey &operator=(RequestKey &&other) { | 93 | 4 | if (&other != this) { | 94 | 4 | this->~RequestKey(); | 95 | 4 | new (this) RequestKey(std::move(other)); | 96 | 4 | } | 97 | 4 | return *this; | 98 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.06k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.06k | if (&other != this) { | 94 | 1.06k | this->~RequestKey(); | 95 | 1.06k | new (this) RequestKey(std::move(other)); | 96 | 1.06k | } | 97 | 1.06k | return *this; | 98 | 1.06k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvEaSEOS4_ Line | Count | Source | 92 | 14 | RequestKey &operator=(RequestKey &&other) { | 93 | 14 | if (&other != this) { | 94 | 14 | this->~RequestKey(); | 95 | 14 | new (this) RequestKey(std::move(other)); | 96 | 14 | } | 97 | 14 | return *this; | 98 | 14 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsEscapableRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvEaSEOS4_ Line | Count | Source | 92 | 858 | RequestKey &operator=(RequestKey &&other) { | 93 | 858 | if (&other != this) { | 94 | 858 | this->~RequestKey(); | 95 | 858 | new (this) RequestKey(std::move(other)); | 96 | 858 | } | 97 | 858 | return *this; | 98 | 858 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvEaSEOS4_ Line | Count | Source | 92 | 306k | RequestKey &operator=(RequestKey &&other) { | 93 | 306k | if (&other != this) { | 94 | 306k | this->~RequestKey(); | 95 | 306k | new (this) RequestKey(std::move(other)); | 96 | 306k | } | 97 | 306k | return *this; | 98 | 306k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 8.26k | RequestKey &operator=(RequestKey &&other) { | 93 | 8.26k | if (&other != this) { | 94 | 8.26k | this->~RequestKey(); | 95 | 8.26k | new (this) RequestKey(std::move(other)); | 96 | 8.26k | } | 97 | 8.26k | return *this; | 98 | 8.26k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvEaSEOS4_ Line | Count | Source | 92 | 5 | RequestKey &operator=(RequestKey &&other) { | 93 | 5 | if (&other != this) { | 94 | 5 | this->~RequestKey(); | 95 | 5 | new (this) RequestKey(std::move(other)); | 96 | 5 | } | 97 | 5 | return *this; | 98 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvEaSEOS4_ Line | Count | Source | 92 | 12.4k | RequestKey &operator=(RequestKey &&other) { | 93 | 12.4k | if (&other != this) { | 94 | 12.4k | this->~RequestKey(); | 95 | 12.4k | new (this) RequestKey(std::move(other)); | 96 | 12.4k | } | 97 | 12.4k | return *this; | 98 | 12.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.61k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.61k | if (&other != this) { | 94 | 1.61k | this->~RequestKey(); | 95 | 1.61k | new (this) RequestKey(std::move(other)); | 96 | 1.61k | } | 97 | 1.61k | return *this; | 98 | 1.61k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.61k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.61k | if (&other != this) { | 94 | 1.61k | this->~RequestKey(); | 95 | 1.61k | new (this) RequestKey(std::move(other)); | 96 | 1.61k | } | 97 | 1.61k | return *this; | 98 | 1.61k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.15k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.15k | if (&other != this) { | 94 | 1.15k | this->~RequestKey(); | 95 | 1.15k | new (this) RequestKey(std::move(other)); | 96 | 1.15k | } | 97 | 1.15k | return *this; | 98 | 1.15k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEaSEOS4_ Line | Count | Source | 92 | 36 | RequestKey &operator=(RequestKey &&other) { | 93 | 36 | if (&other != this) { | 94 | 36 | this->~RequestKey(); | 95 | 36 | new (this) RequestKey(std::move(other)); | 96 | 36 | } | 97 | 36 | return *this; | 98 | 36 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvEaSEOS4_ Line | Count | Source | 92 | 36.4k | RequestKey &operator=(RequestKey &&other) { | 93 | 36.4k | if (&other != this) { | 94 | 36.4k | this->~RequestKey(); | 95 | 36.4k | new (this) RequestKey(std::move(other)); | 96 | 36.4k | } | 97 | 36.4k | return *this; | 98 | 36.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvEaSEOS4_ Line | Count | Source | 92 | 44.7k | RequestKey &operator=(RequestKey &&other) { | 93 | 44.7k | if (&other != this) { | 94 | 44.7k | this->~RequestKey(); | 95 | 44.7k | new (this) RequestKey(std::move(other)); | 96 | 44.7k | } | 97 | 44.7k | return *this; | 98 | 44.7k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 46 | RequestKey &operator=(RequestKey &&other) { | 93 | 46 | if (&other != this) { | 94 | 46 | this->~RequestKey(); | 95 | 46 | new (this) RequestKey(std::move(other)); | 96 | 46 | } | 97 | 46 | return *this; | 98 | 46 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 60.7k | RequestKey &operator=(RequestKey &&other) { | 93 | 60.7k | if (&other != this) { | 94 | 60.7k | this->~RequestKey(); | 95 | 60.7k | new (this) RequestKey(std::move(other)); | 96 | 60.7k | } | 97 | 60.7k | return *this; | 98 | 60.7k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 11.6k | RequestKey &operator=(RequestKey &&other) { | 93 | 11.6k | if (&other != this) { | 94 | 11.6k | this->~RequestKey(); | 95 | 11.6k | new (this) RequestKey(std::move(other)); | 96 | 11.6k | } | 97 | 11.6k | return *this; | 98 | 11.6k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvEaSEOS4_ Line | Count | Source | 92 | 2.03k | RequestKey &operator=(RequestKey &&other) { | 93 | 2.03k | if (&other != this) { | 94 | 2.03k | this->~RequestKey(); | 95 | 2.03k | new (this) RequestKey(std::move(other)); | 96 | 2.03k | } | 97 | 2.03k | return *this; | 98 | 2.03k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEaSEOS4_ Line | Count | Source | 92 | 835 | RequestKey &operator=(RequestKey &&other) { | 93 | 835 | if (&other != this) { | 94 | 835 | this->~RequestKey(); | 95 | 835 | new (this) RequestKey(std::move(other)); | 96 | 835 | } | 97 | 835 | return *this; | 98 | 835 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEaSEOS4_ Line | Count | Source | 92 | 484 | RequestKey &operator=(RequestKey &&other) { | 93 | 484 | if (&other != this) { | 94 | 484 | this->~RequestKey(); | 95 | 484 | new (this) RequestKey(std::move(other)); | 96 | 484 | } | 97 | 484 | return *this; | 98 | 484 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvEaSEOS4_ Line | Count | Source | 92 | 2.42k | RequestKey &operator=(RequestKey &&other) { | 93 | 2.42k | if (&other != this) { | 94 | 2.42k | this->~RequestKey(); | 95 | 2.42k | new (this) RequestKey(std::move(other)); | 96 | 2.42k | } | 97 | 2.42k | return *this; | 98 | 2.42k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvEaSEOS4_ Line | Count | Source | 92 | 335 | RequestKey &operator=(RequestKey &&other) { | 93 | 335 | if (&other != this) { | 94 | 335 | this->~RequestKey(); | 95 | 335 | new (this) RequestKey(std::move(other)); | 96 | 335 | } | 97 | 335 | return *this; | 98 | 335 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvEaSEOS4_ Line | Count | Source | 92 | 22 | RequestKey &operator=(RequestKey &&other) { | 93 | 22 | if (&other != this) { | 94 | 22 | this->~RequestKey(); | 95 | 22 | new (this) RequestKey(std::move(other)); | 96 | 22 | } | 97 | 22 | return *this; | 98 | 22 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvEaSEOS4_ Line | Count | Source | 92 | 323 | RequestKey &operator=(RequestKey &&other) { | 93 | 323 | if (&other != this) { | 94 | 323 | this->~RequestKey(); | 95 | 323 | new (this) RequestKey(std::move(other)); | 96 | 323 | } | 97 | 323 | return *this; | 98 | 323 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEaSEOS4_ Line | Count | Source | 92 | 2 | RequestKey &operator=(RequestKey &&other) { | 93 | 2 | if (&other != this) { | 94 | 2 | this->~RequestKey(); | 95 | 2 | new (this) RequestKey(std::move(other)); | 96 | 2 | } | 97 | 2 | return *this; | 98 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvEaSEOS4_ Line | Count | Source | 92 | 14 | RequestKey &operator=(RequestKey &&other) { | 93 | 14 | if (&other != this) { | 94 | 14 | this->~RequestKey(); | 95 | 14 | new (this) RequestKey(std::move(other)); | 96 | 14 | } | 97 | 14 | return *this; | 98 | 14 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.02k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.02k | if (&other != this) { | 94 | 1.02k | this->~RequestKey(); | 95 | 1.02k | new (this) RequestKey(std::move(other)); | 96 | 1.02k | } | 97 | 1.02k | return *this; | 98 | 1.02k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEaSEOS4_ Line | Count | Source | 92 | 864 | RequestKey &operator=(RequestKey &&other) { | 93 | 864 | if (&other != this) { | 94 | 864 | this->~RequestKey(); | 95 | 864 | new (this) RequestKey(std::move(other)); | 96 | 864 | } | 97 | 864 | return *this; | 98 | 864 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvEaSEOS4_ Line | Count | Source | 92 | 7 | RequestKey &operator=(RequestKey &&other) { | 93 | 7 | if (&other != this) { | 94 | 7 | this->~RequestKey(); | 95 | 7 | new (this) RequestKey(std::move(other)); | 96 | 7 | } | 97 | 7 | return *this; | 98 | 7 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvEaSEOS4_ Line | Count | Source | 92 | 24 | RequestKey &operator=(RequestKey &&other) { | 93 | 24 | if (&other != this) { | 94 | 24 | this->~RequestKey(); | 95 | 24 | new (this) RequestKey(std::move(other)); | 96 | 24 | } | 97 | 24 | return *this; | 98 | 24 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 65 | RequestKey &operator=(RequestKey &&other) { | 93 | 65 | if (&other != this) { | 94 | 65 | this->~RequestKey(); | 95 | 65 | new (this) RequestKey(std::move(other)); | 96 | 65 | } | 97 | 65 | return *this; | 98 | 65 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvEaSEOS4_ Line | Count | Source | 92 | 6 | RequestKey &operator=(RequestKey &&other) { | 93 | 6 | if (&other != this) { | 94 | 6 | this->~RequestKey(); | 95 | 6 | new (this) RequestKey(std::move(other)); | 96 | 6 | } | 97 | 6 | return *this; | 98 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEaSEOS4_ Line | Count | Source | 92 | 1 | RequestKey &operator=(RequestKey &&other) { | 93 | 1 | if (&other != this) { | 94 | 1 | this->~RequestKey(); | 95 | 1 | new (this) RequestKey(std::move(other)); | 96 | 1 | } | 97 | 1 | return *this; | 98 | 1 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvEaSEOS4_ Line | Count | Source | 92 | 230 | RequestKey &operator=(RequestKey &&other) { | 93 | 230 | if (&other != this) { | 94 | 230 | this->~RequestKey(); | 95 | 230 | new (this) RequestKey(std::move(other)); | 96 | 230 | } | 97 | 230 | return *this; | 98 | 230 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvEaSEOS4_ Line | Count | Source | 92 | 462 | RequestKey &operator=(RequestKey &&other) { | 93 | 462 | if (&other != this) { | 94 | 462 | this->~RequestKey(); | 95 | 462 | new (this) RequestKey(std::move(other)); | 96 | 462 | } | 97 | 462 | return *this; | 98 | 462 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvEaSEOS4_ Line | Count | Source | 92 | 461 | RequestKey &operator=(RequestKey &&other) { | 93 | 461 | if (&other != this) { | 94 | 461 | this->~RequestKey(); | 95 | 461 | new (this) RequestKey(std::move(other)); | 96 | 461 | } | 97 | 461 | return *this; | 98 | 461 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvEaSEOS4_ Line | Count | Source | 92 | 11.8k | RequestKey &operator=(RequestKey &&other) { | 93 | 11.8k | if (&other != this) { | 94 | 11.8k | this->~RequestKey(); | 95 | 11.8k | new (this) RequestKey(std::move(other)); | 96 | 11.8k | } | 97 | 11.8k | return *this; | 98 | 11.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvEaSEOS4_ Line | Count | Source | 92 | 25 | RequestKey &operator=(RequestKey &&other) { | 93 | 25 | if (&other != this) { | 94 | 25 | this->~RequestKey(); | 95 | 25 | new (this) RequestKey(std::move(other)); | 96 | 25 | } | 97 | 25 | return *this; | 98 | 25 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEaSEOS4_ Line | Count | Source | 92 | 514 | RequestKey &operator=(RequestKey &&other) { | 93 | 514 | if (&other != this) { | 94 | 514 | this->~RequestKey(); | 95 | 514 | new (this) RequestKey(std::move(other)); | 96 | 514 | } | 97 | 514 | return *this; | 98 | 514 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEaSEOS4_ Line | Count | Source | 92 | 20 | RequestKey &operator=(RequestKey &&other) { | 93 | 20 | if (&other != this) { | 94 | 20 | this->~RequestKey(); | 95 | 20 | new (this) RequestKey(std::move(other)); | 96 | 20 | } | 97 | 20 | return *this; | 98 | 20 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvEaSEOS4_ Line | Count | Source | 92 | 24 | RequestKey &operator=(RequestKey &&other) { | 93 | 24 | if (&other != this) { | 94 | 24 | this->~RequestKey(); | 95 | 24 | new (this) RequestKey(std::move(other)); | 96 | 24 | } | 97 | 24 | return *this; | 98 | 24 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvEaSEOS4_ Line | Count | Source | 92 | 119k | RequestKey &operator=(RequestKey &&other) { | 93 | 119k | if (&other != this) { | 94 | 119k | this->~RequestKey(); | 95 | 119k | new (this) RequestKey(std::move(other)); | 96 | 119k | } | 97 | 119k | return *this; | 98 | 119k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEaSEOS4_ Line | Count | Source | 92 | 639k | RequestKey &operator=(RequestKey &&other) { | 93 | 639k | if (&other != this) { | 94 | 639k | this->~RequestKey(); | 95 | 639k | new (this) RequestKey(std::move(other)); | 96 | 639k | } | 97 | 639k | return *this; | 98 | 639k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvEaSEOS4_ Line | Count | Source | 92 | 353 | RequestKey &operator=(RequestKey &&other) { | 93 | 353 | if (&other != this) { | 94 | 353 | this->~RequestKey(); | 95 | 353 | new (this) RequestKey(std::move(other)); | 96 | 353 | } | 97 | 353 | return *this; | 98 | 353 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvEaSEOS4_ Line | Count | Source | 92 | 8 | RequestKey &operator=(RequestKey &&other) { | 93 | 8 | if (&other != this) { | 94 | 8 | this->~RequestKey(); | 95 | 8 | new (this) RequestKey(std::move(other)); | 96 | 8 | } | 97 | 8 | return *this; | 98 | 8 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEaSEOS4_ Line | Count | Source | 92 | 602k | RequestKey &operator=(RequestKey &&other) { | 93 | 602k | if (&other != this) { | 94 | 602k | this->~RequestKey(); | 95 | 602k | new (this) RequestKey(std::move(other)); | 96 | 602k | } | 97 | 602k | return *this; | 98 | 602k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.69k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.69k | if (&other != this) { | 94 | 1.69k | this->~RequestKey(); | 95 | 1.69k | new (this) RequestKey(std::move(other)); | 96 | 1.69k | } | 97 | 1.69k | return *this; | 98 | 1.69k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.66k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.66k | if (&other != this) { | 94 | 1.66k | this->~RequestKey(); | 95 | 1.66k | new (this) RequestKey(std::move(other)); | 96 | 1.66k | } | 97 | 1.66k | return *this; | 98 | 1.66k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEaSEOS4_ Line | Count | Source | 92 | 148k | RequestKey &operator=(RequestKey &&other) { | 93 | 148k | if (&other != this) { | 94 | 148k | this->~RequestKey(); | 95 | 148k | new (this) RequestKey(std::move(other)); | 96 | 148k | } | 97 | 148k | return *this; | 98 | 148k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEaSEOS4_ Line | Count | Source | 92 | 42.9k | RequestKey &operator=(RequestKey &&other) { | 93 | 42.9k | if (&other != this) { | 94 | 42.9k | this->~RequestKey(); | 95 | 42.9k | new (this) RequestKey(std::move(other)); | 96 | 42.9k | } | 97 | 42.9k | return *this; | 98 | 42.9k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvEaSEOS4_ Line | Count | Source | 92 | 52.5k | RequestKey &operator=(RequestKey &&other) { | 93 | 52.5k | if (&other != this) { | 94 | 52.5k | this->~RequestKey(); | 95 | 52.5k | new (this) RequestKey(std::move(other)); | 96 | 52.5k | } | 97 | 52.5k | return *this; | 98 | 52.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEaSEOS4_ Line | Count | Source | 92 | 5 | RequestKey &operator=(RequestKey &&other) { | 93 | 5 | if (&other != this) { | 94 | 5 | this->~RequestKey(); | 95 | 5 | new (this) RequestKey(std::move(other)); | 96 | 5 | } | 97 | 5 | return *this; | 98 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvEaSEOS4_ Line | Count | Source | 92 | 22 | RequestKey &operator=(RequestKey &&other) { | 93 | 22 | if (&other != this) { | 94 | 22 | this->~RequestKey(); | 95 | 22 | new (this) RequestKey(std::move(other)); | 96 | 22 | } | 97 | 22 | return *this; | 98 | 22 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 36.7k | RequestKey &operator=(RequestKey &&other) { | 93 | 36.7k | if (&other != this) { | 94 | 36.7k | this->~RequestKey(); | 95 | 36.7k | new (this) RequestKey(std::move(other)); | 96 | 36.7k | } | 97 | 36.7k | return *this; | 98 | 36.7k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvEaSEOS4_ Line | Count | Source | 92 | 161k | RequestKey &operator=(RequestKey &&other) { | 93 | 161k | if (&other != this) { | 94 | 161k | this->~RequestKey(); | 95 | 161k | new (this) RequestKey(std::move(other)); | 96 | 161k | } | 97 | 161k | return *this; | 98 | 161k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.28k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.28k | if (&other != this) { | 94 | 1.28k | this->~RequestKey(); | 95 | 1.28k | new (this) RequestKey(std::move(other)); | 96 | 1.28k | } | 97 | 1.28k | return *this; | 98 | 1.28k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEaSEOS4_ Line | Count | Source | 92 | 764 | RequestKey &operator=(RequestKey &&other) { | 93 | 764 | if (&other != this) { | 94 | 764 | this->~RequestKey(); | 95 | 764 | new (this) RequestKey(std::move(other)); | 96 | 764 | } | 97 | 764 | return *this; | 98 | 764 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEaSEOS4_ Line | Count | Source | 92 | 2.27k | RequestKey &operator=(RequestKey &&other) { | 93 | 2.27k | if (&other != this) { | 94 | 2.27k | this->~RequestKey(); | 95 | 2.27k | new (this) RequestKey(std::move(other)); | 96 | 2.27k | } | 97 | 2.27k | return *this; | 98 | 2.27k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvEaSEOS4_ Line | Count | Source | 92 | 4.16k | RequestKey &operator=(RequestKey &&other) { | 93 | 4.16k | if (&other != this) { | 94 | 4.16k | this->~RequestKey(); | 95 | 4.16k | new (this) RequestKey(std::move(other)); | 96 | 4.16k | } | 97 | 4.16k | return *this; | 98 | 4.16k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvEaSEOS4_ Line | Count | Source | 92 | 92 | RequestKey &operator=(RequestKey &&other) { | 93 | 92 | if (&other != this) { | 94 | 92 | this->~RequestKey(); | 95 | 92 | new (this) RequestKey(std::move(other)); | 96 | 92 | } | 97 | 92 | return *this; | 98 | 92 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEaSEOS4_ Line | Count | Source | 92 | 148k | RequestKey &operator=(RequestKey &&other) { | 93 | 148k | if (&other != this) { | 94 | 148k | this->~RequestKey(); | 95 | 148k | new (this) RequestKey(std::move(other)); | 96 | 148k | } | 97 | 148k | return *this; | 98 | 148k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEaSEOS4_ Line | Count | Source | 92 | 75.0k | RequestKey &operator=(RequestKey &&other) { | 93 | 75.0k | if (&other != this) { | 94 | 75.0k | this->~RequestKey(); | 95 | 75.0k | new (this) RequestKey(std::move(other)); | 96 | 75.0k | } | 97 | 75.0k | return *this; | 98 | 75.0k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvEaSEOS4_ Line | Count | Source | 92 | 2.86k | RequestKey &operator=(RequestKey &&other) { | 93 | 2.86k | if (&other != this) { | 94 | 2.86k | this->~RequestKey(); | 95 | 2.86k | new (this) RequestKey(std::move(other)); | 96 | 2.86k | } | 97 | 2.86k | return *this; | 98 | 2.86k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEaSEOS4_ Line | Count | Source | 92 | 4.15k | RequestKey &operator=(RequestKey &&other) { | 93 | 4.15k | if (&other != this) { | 94 | 4.15k | this->~RequestKey(); | 95 | 4.15k | new (this) RequestKey(std::move(other)); | 96 | 4.15k | } | 97 | 4.15k | return *this; | 98 | 4.15k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvEaSEOS4_ Line | Count | Source | 92 | 281k | RequestKey &operator=(RequestKey &&other) { | 93 | 281k | if (&other != this) { | 94 | 281k | this->~RequestKey(); | 95 | 281k | new (this) RequestKey(std::move(other)); | 96 | 281k | } | 97 | 281k | return *this; | 98 | 281k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEaSEOS4_ Line | Count | Source | 92 | 12 | RequestKey &operator=(RequestKey &&other) { | 93 | 12 | if (&other != this) { | 94 | 12 | this->~RequestKey(); | 95 | 12 | new (this) RequestKey(std::move(other)); | 96 | 12 | } | 97 | 12 | return *this; | 98 | 12 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvEaSEOS4_ DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvEaSEOS4_ Line | Count | Source | 92 | 161k | RequestKey &operator=(RequestKey &&other) { | 93 | 161k | if (&other != this) { | 94 | 161k | this->~RequestKey(); | 95 | 161k | new (this) RequestKey(std::move(other)); | 96 | 161k | } | 97 | 161k | return *this; | 98 | 161k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEaSEOS4_ Line | Count | Source | 92 | 21.2k | RequestKey &operator=(RequestKey &&other) { | 93 | 21.2k | if (&other != this) { | 94 | 21.2k | this->~RequestKey(); | 95 | 21.2k | new (this) RequestKey(std::move(other)); | 96 | 21.2k | } | 97 | 21.2k | return *this; | 98 | 21.2k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvEaSEOS4_ Line | Count | Source | 92 | 16.9k | RequestKey &operator=(RequestKey &&other) { | 93 | 16.9k | if (&other != this) { | 94 | 16.9k | this->~RequestKey(); | 95 | 16.9k | new (this) RequestKey(std::move(other)); | 96 | 16.9k | } | 97 | 16.9k | return *this; | 98 | 16.9k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvEaSEOS4_ Line | Count | Source | 92 | 13.0k | RequestKey &operator=(RequestKey &&other) { | 93 | 13.0k | if (&other != this) { | 94 | 13.0k | this->~RequestKey(); | 95 | 13.0k | new (this) RequestKey(std::move(other)); | 96 | 13.0k | } | 97 | 13.0k | return *this; | 98 | 13.0k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEaSEOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEaSEOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEaSEOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEaSEOS4_ DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEaSEOS4_ Line | Count | Source | 92 | 8 | RequestKey &operator=(RequestKey &&other) { | 93 | 8 | if (&other != this) { | 94 | 8 | this->~RequestKey(); | 95 | 8 | new (this) RequestKey(std::move(other)); | 96 | 8 | } | 97 | 8 | return *this; | 98 | 8 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvEaSEOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEaSEOS4_ DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEaSEOS4_ Line | Count | Source | 92 | 4 | RequestKey &operator=(RequestKey &&other) { | 93 | 4 | if (&other != this) { | 94 | 4 | this->~RequestKey(); | 95 | 4 | new (this) RequestKey(std::move(other)); | 96 | 4 | } | 97 | 4 | return *this; | 98 | 4 | } |
DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvEaSEOS4_ Line | Count | Source | 92 | 3.94k | RequestKey &operator=(RequestKey &&other) { | 93 | 3.94k | if (&other != this) { | 94 | 3.94k | this->~RequestKey(); | 95 | 3.94k | new (this) RequestKey(std::move(other)); | 96 | 3.94k | } | 97 | 3.94k | return *this; | 98 | 3.94k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEaSEOS4_ Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvEaSEOS4_ Line | Count | Source | 92 | 40.8k | RequestKey &operator=(RequestKey &&other) { | 93 | 40.8k | if (&other != this) { | 94 | 40.8k | this->~RequestKey(); | 95 | 40.8k | new (this) RequestKey(std::move(other)); | 96 | 40.8k | } | 97 | 40.8k | return *this; | 98 | 40.8k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvEaSEOS4_ Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvEaSEOS4_ Line | Count | Source | 92 | 4.56k | RequestKey &operator=(RequestKey &&other) { | 93 | 4.56k | if (&other != this) { | 94 | 4.56k | this->~RequestKey(); | 95 | 4.56k | new (this) RequestKey(std::move(other)); | 96 | 4.56k | } | 97 | 4.56k | return *this; | 98 | 4.56k | } |
Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEaSEOS4_ Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEaSEOS4_ Line | Count | Source | 92 | 5.26k | RequestKey &operator=(RequestKey &&other) { | 93 | 5.26k | if (&other != this) { | 94 | 5.26k | this->~RequestKey(); | 95 | 5.26k | new (this) RequestKey(std::move(other)); | 96 | 5.26k | } | 97 | 5.26k | return *this; | 98 | 5.26k | } |
GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEaSEOS4_ Line | Count | Source | 92 | 5.71k | RequestKey &operator=(RequestKey &&other) { | 93 | 5.71k | if (&other != this) { | 94 | 5.71k | this->~RequestKey(); | 95 | 5.71k | new (this) RequestKey(std::move(other)); | 96 | 5.71k | } | 97 | 5.71k | return *this; | 98 | 5.71k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvEaSEOS4_ Line | Count | Source | 92 | 11 | RequestKey &operator=(RequestKey &&other) { | 93 | 11 | if (&other != this) { | 94 | 11 | this->~RequestKey(); | 95 | 11 | new (this) RequestKey(std::move(other)); | 96 | 11 | } | 97 | 11 | return *this; | 98 | 11 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvEaSEOS4_ Line | Count | Source | 92 | 268 | RequestKey &operator=(RequestKey &&other) { | 93 | 268 | if (&other != this) { | 94 | 268 | this->~RequestKey(); | 95 | 268 | new (this) RequestKey(std::move(other)); | 96 | 268 | } | 97 | 268 | return *this; | 98 | 268 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvEaSEOS4_ Line | Count | Source | 92 | 210 | RequestKey &operator=(RequestKey &&other) { | 93 | 210 | if (&other != this) { | 94 | 210 | this->~RequestKey(); | 95 | 210 | new (this) RequestKey(std::move(other)); | 96 | 210 | } | 97 | 210 | return *this; | 98 | 210 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEaSEOS4_ Line | Count | Source | 92 | 9 | RequestKey &operator=(RequestKey &&other) { | 93 | 9 | if (&other != this) { | 94 | 9 | this->~RequestKey(); | 95 | 9 | new (this) RequestKey(std::move(other)); | 96 | 9 | } | 97 | 9 | return *this; | 98 | 9 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEaSEOS4_ Line | Count | Source | 92 | 15.3k | RequestKey &operator=(RequestKey &&other) { | 93 | 15.3k | if (&other != this) { | 94 | 15.3k | this->~RequestKey(); | 95 | 15.3k | new (this) RequestKey(std::move(other)); | 96 | 15.3k | } | 97 | 15.3k | return *this; | 98 | 15.3k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39ImplicitKnownProtocolConformanceRequestEvEaSEOS4_ Line | Count | Source | 92 | 6.41k | RequestKey &operator=(RequestKey &&other) { | 93 | 6.41k | if (&other != this) { | 94 | 6.41k | this->~RequestKey(); | 95 | 6.41k | new (this) RequestKey(std::move(other)); | 96 | 6.41k | } | 97 | 6.41k | return *this; | 98 | 6.41k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEaSEOS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEaSEOS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvEaSEOS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvEaSEOS4_ Line | Count | Source | 92 | 313k | RequestKey &operator=(RequestKey &&other) { | 93 | 313k | if (&other != this) { | 94 | 313k | this->~RequestKey(); | 95 | 313k | new (this) RequestKey(std::move(other)); | 96 | 313k | } | 97 | 313k | return *this; | 98 | 313k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvEaSEOS4_ Line | Count | Source | 92 | 224 | RequestKey &operator=(RequestKey &&other) { | 93 | 224 | if (&other != this) { | 94 | 224 | this->~RequestKey(); | 95 | 224 | new (this) RequestKey(std::move(other)); | 96 | 224 | } | 97 | 224 | return *this; | 98 | 224 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.07k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.07k | if (&other != this) { | 94 | 1.07k | this->~RequestKey(); | 95 | 1.07k | new (this) RequestKey(std::move(other)); | 96 | 1.07k | } | 97 | 1.07k | return *this; | 98 | 1.07k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvEaSEOS4_ Line | Count | Source | 92 | 710 | RequestKey &operator=(RequestKey &&other) { | 93 | 710 | if (&other != this) { | 94 | 710 | this->~RequestKey(); | 95 | 710 | new (this) RequestKey(std::move(other)); | 96 | 710 | } | 97 | 710 | return *this; | 98 | 710 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvEaSEOS4_ Line | Count | Source | 92 | 100 | RequestKey &operator=(RequestKey &&other) { | 93 | 100 | if (&other != this) { | 94 | 100 | this->~RequestKey(); | 95 | 100 | new (this) RequestKey(std::move(other)); | 96 | 100 | } | 97 | 100 | return *this; | 98 | 100 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32LookupConformanceInModuleRequestEvEaSEOS4_ Unexecuted instantiation: ModuleNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21LookupInModuleRequestEvEaSEOS4_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEaSEOS4_ Line | Count | Source | 92 | 16.6k | RequestKey &operator=(RequestKey &&other) { | 93 | 16.6k | if (&other != this) { | 94 | 16.6k | this->~RequestKey(); | 95 | 16.6k | new (this) RequestKey(std::move(other)); | 96 | 16.6k | } | 97 | 16.6k | return *this; | 98 | 16.6k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEaSEOS4_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEaSEOS4_ Line | Count | Source | 92 | 177k | RequestKey &operator=(RequestKey &&other) { | 93 | 177k | if (&other != this) { | 94 | 177k | this->~RequestKey(); | 95 | 177k | new (this) RequestKey(std::move(other)); | 96 | 177k | } | 97 | 177k | return *this; | 98 | 177k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEaSEOS4_ Line | Count | Source | 92 | 187 | RequestKey &operator=(RequestKey &&other) { | 93 | 187 | if (&other != this) { | 94 | 187 | this->~RequestKey(); | 95 | 187 | new (this) RequestKey(std::move(other)); | 96 | 187 | } | 97 | 187 | return *this; | 98 | 187 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvEaSEOS4_ Line | Count | Source | 92 | 77 | RequestKey &operator=(RequestKey &&other) { | 93 | 77 | if (&other != this) { | 94 | 77 | this->~RequestKey(); | 95 | 77 | new (this) RequestKey(std::move(other)); | 96 | 77 | } | 97 | 77 | return *this; | 98 | 77 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEaSEOS4_ Line | Count | Source | 92 | 7.81k | RequestKey &operator=(RequestKey &&other) { | 93 | 7.81k | if (&other != this) { | 94 | 7.81k | this->~RequestKey(); | 95 | 7.81k | new (this) RequestKey(std::move(other)); | 96 | 7.81k | } | 97 | 7.81k | return *this; | 98 | 7.81k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEaSEOS4_ Line | Count | Source | 92 | 149 | RequestKey &operator=(RequestKey &&other) { | 93 | 149 | if (&other != this) { | 94 | 149 | this->~RequestKey(); | 95 | 149 | new (this) RequestKey(std::move(other)); | 96 | 149 | } | 97 | 149 | return *this; | 98 | 149 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32SelfBoundsFromWhereClauseRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37SelfBoundsFromGenericSignatureRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19DirectLookupRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CXXNamespaceMemberLookupEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22AnyObjectLookupRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22QualifiedLookupRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleQualifiedLookupRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36UnderlyingTypeDeclsReferencedRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InheritedDeclsReferencedRequestEvEaSEOS4_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvEaSEOS4_ Line | Count | Source | 92 | 2.94k | RequestKey &operator=(RequestKey &&other) { | 93 | 2.94k | if (&other != this) { | 94 | 2.94k | this->~RequestKey(); | 95 | 2.94k | new (this) RequestKey(std::move(other)); | 96 | 2.94k | } | 97 | 2.94k | return *this; | 98 | 2.94k | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvEaSEOS4_ Line | Count | Source | 92 | 8 | RequestKey &operator=(RequestKey &&other) { | 93 | 8 | if (&other != this) { | 94 | 8 | this->~RequestKey(); | 95 | 8 | new (this) RequestKey(std::move(other)); | 96 | 8 | } | 97 | 8 | return *this; | 98 | 8 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvEaSEOS4_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvEaSEOS4_ Line | Count | Source | 92 | 742 | RequestKey &operator=(RequestKey &&other) { | 93 | 742 | if (&other != this) { | 94 | 742 | this->~RequestKey(); | 95 | 742 | new (this) RequestKey(std::move(other)); | 96 | 742 | } | 97 | 742 | return *this; | 98 | 742 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvEaSEOS4_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEaSEOS4_ Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvEaSEOS4_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvEaSEOS4_ Line | Count | Source | 92 | 37.3k | RequestKey &operator=(RequestKey &&other) { | 93 | 37.3k | if (&other != this) { | 94 | 37.3k | this->~RequestKey(); | 95 | 37.3k | new (this) RequestKey(std::move(other)); | 96 | 37.3k | } | 97 | 37.3k | return *this; | 98 | 37.3k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvEaSEOS4_ Line | Count | Source | 92 | 62 | RequestKey &operator=(RequestKey &&other) { | 93 | 62 | if (&other != this) { | 94 | 62 | this->~RequestKey(); | 95 | 62 | new (this) RequestKey(std::move(other)); | 96 | 62 | } | 97 | 62 | return *this; | 98 | 62 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvEaSEOS4_ Line | Count | Source | 92 | 988 | RequestKey &operator=(RequestKey &&other) { | 93 | 988 | if (&other != this) { | 94 | 988 | this->~RequestKey(); | 95 | 988 | new (this) RequestKey(std::move(other)); | 96 | 988 | } | 97 | 988 | return *this; | 98 | 988 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvEaSEOS4_ Line | Count | Source | 92 | 3 | RequestKey &operator=(RequestKey &&other) { | 93 | 3 | if (&other != this) { | 94 | 3 | this->~RequestKey(); | 95 | 3 | new (this) RequestKey(std::move(other)); | 96 | 3 | } | 97 | 3 | return *this; | 98 | 3 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvEaSEOS4_ Line | Count | Source | 92 | 24.6k | RequestKey &operator=(RequestKey &&other) { | 93 | 24.6k | if (&other != this) { | 94 | 24.6k | this->~RequestKey(); | 95 | 24.6k | new (this) RequestKey(std::move(other)); | 96 | 24.6k | } | 97 | 24.6k | return *this; | 98 | 24.6k | } |
RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvEaSEOS4_ Line | Count | Source | 92 | 18.4k | RequestKey &operator=(RequestKey &&other) { | 93 | 18.4k | if (&other != this) { | 94 | 18.4k | this->~RequestKey(); | 95 | 18.4k | new (this) RequestKey(std::move(other)); | 96 | 18.4k | } | 97 | 18.4k | return *this; | 98 | 18.4k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEaSEOS4_ Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvEaSEOS4_ Line | Count | Source | 92 | 26.6k | RequestKey &operator=(RequestKey &&other) { | 93 | 26.6k | if (&other != this) { | 94 | 26.6k | this->~RequestKey(); | 95 | 26.6k | new (this) RequestKey(std::move(other)); | 96 | 26.6k | } | 97 | 26.6k | return *this; | 98 | 26.6k | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvEaSEOS4_ Line | Count | Source | 92 | 218 | RequestKey &operator=(RequestKey &&other) { | 93 | 218 | if (&other != this) { | 94 | 218 | this->~RequestKey(); | 95 | 218 | new (this) RequestKey(std::move(other)); | 96 | 218 | } | 97 | 218 | return *this; | 98 | 218 | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvEaSEOS4_ Line | Count | Source | 92 | 82 | RequestKey &operator=(RequestKey &&other) { | 93 | 82 | if (&other != this) { | 94 | 82 | this->~RequestKey(); | 95 | 82 | new (this) RequestKey(std::move(other)); | 96 | 82 | } | 97 | 82 | return *this; | 98 | 82 | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20IsNoncopyableRequestEvEaSEOS4_ TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvEaSEOS4_ Line | Count | Source | 92 | 16.9k | RequestKey &operator=(RequestKey &&other) { | 93 | 16.9k | if (&other != this) { | 94 | 16.9k | this->~RequestKey(); | 95 | 16.9k | new (this) RequestKey(std::move(other)); | 96 | 16.9k | } | 97 | 16.9k | return *this; | 98 | 16.9k | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEaSEOS4_ Line | Count | Source | 92 | 62.7k | RequestKey &operator=(RequestKey &&other) { | 93 | 62.7k | if (&other != this) { | 94 | 62.7k | this->~RequestKey(); | 95 | 62.7k | new (this) RequestKey(std::move(other)); | 96 | 62.7k | } | 97 | 62.7k | return *this; | 98 | 62.7k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEaSEOS4_ |
99 | | |
100 | 109M | ~RequestKey() { |
101 | 109M | if (Kind == StorageKind::Normal) |
102 | 13.7M | Req.~Request(); |
103 | 109M | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvED2Ev ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvED2Ev Line | Count | Source | 100 | 164k | ~RequestKey() { | 101 | 164k | if (Kind == StorageKind::Normal) | 102 | 36.8k | Req.~Request(); | 103 | 164k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvED2Ev Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvED2Ev Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvED2Ev Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvED2Ev Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvED2Ev Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvED2Ev IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvED2Ev Line | Count | Source | 100 | 3.67k | ~RequestKey() { | 101 | 3.67k | if (Kind == StorageKind::Normal) | 102 | 147 | Req.~Request(); | 103 | 3.67k | } |
SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvED2Ev Line | Count | Source | 100 | 5.85k | ~RequestKey() { | 101 | 5.85k | if (Kind == StorageKind::Normal) | 102 | 234 | Req.~Request(); | 103 | 5.85k | } |
Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvED2Ev Line | Count | Source | 100 | 3.57k | ~RequestKey() { | 101 | 3.57k | if (Kind == StorageKind::Normal) | 102 | 264 | Req.~Request(); | 103 | 3.57k | } |
Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvED2Ev Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvED2Ev Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvED2Ev Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvED2Ev Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvED2Ev Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvED2Ev Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvED2Ev Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvED2Ev Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvED2Ev Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvED2Ev Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvED2Ev CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvED2Ev Line | Count | Source | 100 | 264k | ~RequestKey() { | 101 | 264k | if (Kind == StorageKind::Normal) | 102 | 54.5k | Req.~Request(); | 103 | 264k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvED2Ev Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvED2Ev CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvED2Ev Line | Count | Source | 100 | 54.4k | ~RequestKey() { | 101 | 54.4k | if (Kind == StorageKind::Normal) | 102 | 9.28k | Req.~Request(); | 103 | 54.4k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvED2Ev Line | Count | Source | 100 | 31.5k | ~RequestKey() { | 101 | 31.5k | if (Kind == StorageKind::Normal) | 102 | 6.25k | Req.~Request(); | 103 | 31.5k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvED2Ev Line | Count | Source | 100 | 14.3k | ~RequestKey() { | 101 | 14.3k | if (Kind == StorageKind::Normal) | 102 | 2.65k | Req.~Request(); | 103 | 14.3k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvED2Ev ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvED2Ev Line | Count | Source | 100 | 12.0k | ~RequestKey() { | 101 | 12.0k | if (Kind == StorageKind::Normal) | 102 | 2.39k | Req.~Request(); | 103 | 12.0k | } |
DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvED2Ev Line | Count | Source | 100 | 6.16k | ~RequestKey() { | 101 | 6.16k | if (Kind == StorageKind::Normal) | 102 | 1.41k | Req.~Request(); | 103 | 6.16k | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvED2Ev Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvED2Ev Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvED2Ev Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvED2Ev Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvED2Ev Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsCCompatibleFuncDeclRequestEvED2Ev Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvED2Ev Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvED2Ev Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvED2Ev Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvED2Ev Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvED2Ev Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvED2Ev Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvED2Ev TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvED2Ev Line | Count | Source | 100 | 372 | ~RequestKey() { | 101 | 372 | if (Kind == StorageKind::Normal) | 102 | 24 | Req.~Request(); | 103 | 372 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvED2Ev TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvED2Ev Line | Count | Source | 100 | 62.6k | ~RequestKey() { | 101 | 62.6k | if (Kind == StorageKind::Normal) | 102 | 16.1k | Req.~Request(); | 103 | 62.6k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvED2Ev TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvED2Ev Line | Count | Source | 100 | 129k | ~RequestKey() { | 101 | 129k | if (Kind == StorageKind::Normal) | 102 | 31.2k | Req.~Request(); | 103 | 129k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvED2Ev Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvED2Ev Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvED2Ev Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvED2Ev Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvED2Ev Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvED2Ev Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvED2Ev TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvED2Ev Line | Count | Source | 100 | 46.9k | ~RequestKey() { | 101 | 46.9k | if (Kind == StorageKind::Normal) | 102 | 11.7k | Req.~Request(); | 103 | 46.9k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvED2Ev TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvED2Ev Line | Count | Source | 100 | 2.71M | ~RequestKey() { | 101 | 2.71M | if (Kind == StorageKind::Normal) | 102 | 647k | Req.~Request(); | 103 | 2.71M | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvED2Ev TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvED2Ev Line | Count | Source | 100 | 330k | ~RequestKey() { | 101 | 330k | if (Kind == StorageKind::Normal) | 102 | 498 | Req.~Request(); | 103 | 330k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvED2Ev Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvED2Ev TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvED2Ev Line | Count | Source | 100 | 356 | ~RequestKey() { | 101 | 356 | if (Kind == StorageKind::Normal) | 102 | 36 | Req.~Request(); | 103 | 356 | } |
TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvED2Ev Line | Count | Source | 100 | 308 | ~RequestKey() { | 101 | 308 | if (Kind == StorageKind::Normal) | 102 | 12 | Req.~Request(); | 103 | 308 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvED2Ev TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvED2Ev Line | Count | Source | 100 | 357k | ~RequestKey() { | 101 | 357k | if (Kind == StorageKind::Normal) | 102 | 89.0k | Req.~Request(); | 103 | 357k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvED2Ev Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvED2Ev Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvED2Ev Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvED2Ev TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvED2Ev Line | Count | Source | 100 | 7.83k | ~RequestKey() { | 101 | 7.83k | if (Kind == StorageKind::Normal) | 102 | 1.88k | Req.~Request(); | 103 | 7.83k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvED2Ev Line | Count | Source | 100 | 16.2k | ~RequestKey() { | 101 | 16.2k | if (Kind == StorageKind::Normal) | 102 | 2.74k | Req.~Request(); | 103 | 16.2k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvED2Ev Line | Count | Source | 100 | 351 | ~RequestKey() { | 101 | 351 | if (Kind == StorageKind::Normal) | 102 | 75 | Req.~Request(); | 103 | 351 | } |
TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvED2Ev Line | Count | Source | 100 | 301k | ~RequestKey() { | 101 | 301k | if (Kind == StorageKind::Normal) | 102 | 83.0k | Req.~Request(); | 103 | 301k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvED2Ev Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvED2Ev Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvED2Ev TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvED2Ev Line | Count | Source | 100 | 1.43k | ~RequestKey() { | 101 | 1.43k | if (Kind == StorageKind::Normal) | 102 | 198 | Req.~Request(); | 103 | 1.43k | } |
TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvED2Ev Line | Count | Source | 100 | 427k | ~RequestKey() { | 101 | 427k | if (Kind == StorageKind::Normal) | 102 | 117k | Req.~Request(); | 103 | 427k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvED2Ev TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvED2Ev Line | Count | Source | 100 | 4.92k | ~RequestKey() { | 101 | 4.92k | if (Kind == StorageKind::Normal) | 102 | 189 | Req.~Request(); | 103 | 4.92k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvED2Ev Line | Count | Source | 100 | 19.6k | ~RequestKey() { | 101 | 19.6k | if (Kind == StorageKind::Normal) | 102 | 759 | Req.~Request(); | 103 | 19.6k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvED2Ev Line | Count | Source | 100 | 24.4k | ~RequestKey() { | 101 | 24.4k | if (Kind == StorageKind::Normal) | 102 | 2.71k | Req.~Request(); | 103 | 24.4k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvED2Ev Line | Count | Source | 100 | 24.4k | ~RequestKey() { | 101 | 24.4k | if (Kind == StorageKind::Normal) | 102 | 2.71k | Req.~Request(); | 103 | 24.4k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvED2Ev Line | Count | Source | 100 | 19.6k | ~RequestKey() { | 101 | 19.6k | if (Kind == StorageKind::Normal) | 102 | 759 | Req.~Request(); | 103 | 19.6k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvED2Ev Line | Count | Source | 100 | 129k | ~RequestKey() { | 101 | 129k | if (Kind == StorageKind::Normal) | 102 | 33.5k | Req.~Request(); | 103 | 129k | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvED2Ev Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvED2Ev ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvED2Ev Line | Count | Source | 100 | 1.31M | ~RequestKey() { | 101 | 1.31M | if (Kind == StorageKind::Normal) | 102 | 420k | Req.~Request(); | 103 | 1.31M | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvED2Ev Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvED2Ev Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvED2Ev Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvED2Ev Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvED2Ev Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvED2Ev Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvED2Ev Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvED2Ev Line | Count | Source | 100 | 33.2k | ~RequestKey() { | 101 | 33.2k | if (Kind == StorageKind::Normal) | 102 | 15.4k | Req.~Request(); | 103 | 33.2k | } |
Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvED2Ev ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvED2Ev Line | Count | Source | 100 | 1.30M | ~RequestKey() { | 101 | 1.30M | if (Kind == StorageKind::Normal) | 102 | 415k | Req.~Request(); | 103 | 1.30M | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvED2Ev Line | Count | Source | 100 | 292 | ~RequestKey() { | 101 | 292 | if (Kind == StorageKind::Normal) | 102 | 12 | Req.~Request(); | 103 | 292 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvED2Ev Line | Count | Source | 100 | 292 | ~RequestKey() { | 101 | 292 | if (Kind == StorageKind::Normal) | 102 | 12 | Req.~Request(); | 103 | 292 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvED2Ev ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvED2Ev Line | Count | Source | 100 | 292 | ~RequestKey() { | 101 | 292 | if (Kind == StorageKind::Normal) | 102 | 12 | Req.~Request(); | 103 | 292 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvED2Ev Line | Count | Source | 100 | 302 | ~RequestKey() { | 101 | 302 | if (Kind == StorageKind::Normal) | 102 | 12 | Req.~Request(); | 103 | 302 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvED2Ev Line | Count | Source | 100 | 484 | ~RequestKey() { | 101 | 484 | if (Kind == StorageKind::Normal) | 102 | 72 | Req.~Request(); | 103 | 484 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvED2Ev Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvED2Ev Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvED2Ev Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvED2Ev Line | Count | Source | 100 | 17.4k | ~RequestKey() { | 101 | 17.4k | if (Kind == StorageKind::Normal) | 102 | 2.76k | Req.~Request(); | 103 | 17.4k | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvED2Ev Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvED2Ev Line | Count | Source | 100 | 9.92k | ~RequestKey() { | 101 | 9.92k | if (Kind == StorageKind::Normal) | 102 | 923 | Req.~Request(); | 103 | 9.92k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvED2Ev Line | Count | Source | 100 | 18.1k | ~RequestKey() { | 101 | 18.1k | if (Kind == StorageKind::Normal) | 102 | 3.18k | Req.~Request(); | 103 | 18.1k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvED2Ev Line | Count | Source | 100 | 7.87k | ~RequestKey() { | 101 | 7.87k | if (Kind == StorageKind::Normal) | 102 | 1.12k | Req.~Request(); | 103 | 7.87k | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvED2Ev Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvED2Ev Line | Count | Source | 100 | 9.12k | ~RequestKey() { | 101 | 9.12k | if (Kind == StorageKind::Normal) | 102 | 2.30k | Req.~Request(); | 103 | 9.12k | } |
Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvED2Ev Line | Count | Source | 100 | 1.46M | ~RequestKey() { | 101 | 1.46M | if (Kind == StorageKind::Normal) | 102 | 306k | Req.~Request(); | 103 | 1.46M | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvED2Ev Line | Count | Source | 100 | 10.0M | ~RequestKey() { | 101 | 10.0M | if (Kind == StorageKind::Normal) | 102 | 2.41M | Req.~Request(); | 103 | 10.0M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvED2Ev Line | Count | Source | 100 | 3.87M | ~RequestKey() { | 101 | 3.87M | if (Kind == StorageKind::Normal) | 102 | 930k | Req.~Request(); | 103 | 3.87M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvED2Ev Line | Count | Source | 100 | 4.60k | ~RequestKey() { | 101 | 4.60k | if (Kind == StorageKind::Normal) | 102 | 883 | Req.~Request(); | 103 | 4.60k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvED2Ev Line | Count | Source | 100 | 8.81M | ~RequestKey() { | 101 | 8.81M | if (Kind == StorageKind::Normal) | 102 | 712k | Req.~Request(); | 103 | 8.81M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvED2Ev Line | Count | Source | 100 | 596 | ~RequestKey() { | 101 | 596 | if (Kind == StorageKind::Normal) | 102 | 135 | Req.~Request(); | 103 | 596 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvED2Ev Line | Count | Source | 100 | 1.32M | ~RequestKey() { | 101 | 1.32M | if (Kind == StorageKind::Normal) | 102 | 2.95k | Req.~Request(); | 103 | 1.32M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvED2Ev Line | Count | Source | 100 | 2.35k | ~RequestKey() { | 101 | 2.35k | if (Kind == StorageKind::Normal) | 102 | 285 | Req.~Request(); | 103 | 2.35k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvED2Ev Line | Count | Source | 100 | 158 | ~RequestKey() { | 101 | 158 | if (Kind == StorageKind::Normal) | 102 | 6 | Req.~Request(); | 103 | 158 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvED2Ev Line | Count | Source | 100 | 68.8k | ~RequestKey() { | 101 | 68.8k | if (Kind == StorageKind::Normal) | 102 | 276 | Req.~Request(); | 103 | 68.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvED2Ev Line | Count | Source | 100 | 8.14k | ~RequestKey() { | 101 | 8.14k | if (Kind == StorageKind::Normal) | 102 | 2.12k | Req.~Request(); | 103 | 8.14k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvED2Ev Line | Count | Source | 100 | 2.61k | ~RequestKey() { | 101 | 2.61k | if (Kind == StorageKind::Normal) | 102 | 66 | Req.~Request(); | 103 | 2.61k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvED2Ev Line | Count | Source | 100 | 3.34k | ~RequestKey() { | 101 | 3.34k | if (Kind == StorageKind::Normal) | 102 | 341 | Req.~Request(); | 103 | 3.34k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvED2Ev Line | Count | Source | 100 | 6.21k | ~RequestKey() { | 101 | 6.21k | if (Kind == StorageKind::Normal) | 102 | 1.67k | Req.~Request(); | 103 | 6.21k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvED2Ev Line | Count | Source | 100 | 116k | ~RequestKey() { | 101 | 116k | if (Kind == StorageKind::Normal) | 102 | 29.9k | Req.~Request(); | 103 | 116k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvED2Ev Line | Count | Source | 100 | 3.73k | ~RequestKey() { | 101 | 3.73k | if (Kind == StorageKind::Normal) | 102 | 120 | Req.~Request(); | 103 | 3.73k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvED2Ev Line | Count | Source | 100 | 4.23k | ~RequestKey() { | 101 | 4.23k | if (Kind == StorageKind::Normal) | 102 | 129 | Req.~Request(); | 103 | 4.23k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvED2Ev Line | Count | Source | 100 | 13.0k | ~RequestKey() { | 101 | 13.0k | if (Kind == StorageKind::Normal) | 102 | 1.29k | Req.~Request(); | 103 | 13.0k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvED2Ev Line | Count | Source | 100 | 200k | ~RequestKey() { | 101 | 200k | if (Kind == StorageKind::Normal) | 102 | 48.4k | Req.~Request(); | 103 | 200k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvED2Ev Line | Count | Source | 100 | 141k | ~RequestKey() { | 101 | 141k | if (Kind == StorageKind::Normal) | 102 | 336 | Req.~Request(); | 103 | 141k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvED2Ev Line | Count | Source | 100 | 312 | ~RequestKey() { | 101 | 312 | if (Kind == StorageKind::Normal) | 102 | 12 | Req.~Request(); | 103 | 312 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvED2Ev Line | Count | Source | 100 | 243k | ~RequestKey() { | 101 | 243k | if (Kind == StorageKind::Normal) | 102 | 2.25k | Req.~Request(); | 103 | 243k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvED2Ev Line | Count | Source | 100 | 1.00k | ~RequestKey() { | 101 | 1.00k | if (Kind == StorageKind::Normal) | 102 | 42 | Req.~Request(); | 103 | 1.00k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsEscapableRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvED2Ev Line | Count | Source | 100 | 12.8k | ~RequestKey() { | 101 | 12.8k | if (Kind == StorageKind::Normal) | 102 | 1.81k | Req.~Request(); | 103 | 12.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvED2Ev Line | Count | Source | 100 | 2.34M | ~RequestKey() { | 101 | 2.34M | if (Kind == StorageKind::Normal) | 102 | 572k | Req.~Request(); | 103 | 2.34M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvED2Ev Line | Count | Source | 100 | 10.6M | ~RequestKey() { | 101 | 10.6M | if (Kind == StorageKind::Normal) | 102 | 16.7k | Req.~Request(); | 103 | 10.6M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvED2Ev Line | Count | Source | 100 | 204k | ~RequestKey() { | 101 | 204k | if (Kind == StorageKind::Normal) | 102 | 15 | Req.~Request(); | 103 | 204k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvED2Ev Line | Count | Source | 100 | 11.9M | ~RequestKey() { | 101 | 11.9M | if (Kind == StorageKind::Normal) | 102 | 27.8k | Req.~Request(); | 103 | 11.9M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvED2Ev Line | Count | Source | 100 | 24.2k | ~RequestKey() { | 101 | 24.2k | if (Kind == StorageKind::Normal) | 102 | 4.26k | Req.~Request(); | 103 | 24.2k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvED2Ev Line | Count | Source | 100 | 21.5k | ~RequestKey() { | 101 | 21.5k | if (Kind == StorageKind::Normal) | 102 | 4.27k | Req.~Request(); | 103 | 21.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvED2Ev Line | Count | Source | 100 | 21.8k | ~RequestKey() { | 101 | 21.8k | if (Kind == StorageKind::Normal) | 102 | 2.79k | Req.~Request(); | 103 | 21.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvED2Ev Line | Count | Source | 100 | 4.92k | ~RequestKey() { | 101 | 4.92k | if (Kind == StorageKind::Normal) | 102 | 108 | Req.~Request(); | 103 | 4.92k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvED2Ev Line | Count | Source | 100 | 3.33M | ~RequestKey() { | 101 | 3.33M | if (Kind == StorageKind::Normal) | 102 | 72.3k | Req.~Request(); | 103 | 3.33M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvED2Ev Line | Count | Source | 100 | 1.10M | ~RequestKey() { | 101 | 1.10M | if (Kind == StorageKind::Normal) | 102 | 89.0k | Req.~Request(); | 103 | 1.10M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvED2Ev Line | Count | Source | 100 | 5.93k | ~RequestKey() { | 101 | 5.93k | if (Kind == StorageKind::Normal) | 102 | 138 | Req.~Request(); | 103 | 5.93k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvED2Ev Line | Count | Source | 100 | 373k | ~RequestKey() { | 101 | 373k | if (Kind == StorageKind::Normal) | 102 | 118k | Req.~Request(); | 103 | 373k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvED2Ev Line | Count | Source | 100 | 106k | ~RequestKey() { | 101 | 106k | if (Kind == StorageKind::Normal) | 102 | 27.7k | Req.~Request(); | 103 | 106k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvED2Ev Line | Count | Source | 100 | 25.7k | ~RequestKey() { | 101 | 25.7k | if (Kind == StorageKind::Normal) | 102 | 5.26k | Req.~Request(); | 103 | 25.7k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvED2Ev Line | Count | Source | 100 | 13.1k | ~RequestKey() { | 101 | 13.1k | if (Kind == StorageKind::Normal) | 102 | 2.31k | Req.~Request(); | 103 | 13.1k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvED2Ev Line | Count | Source | 100 | 13.1k | ~RequestKey() { | 101 | 13.1k | if (Kind == StorageKind::Normal) | 102 | 1.45k | Req.~Request(); | 103 | 13.1k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvED2Ev Line | Count | Source | 100 | 27.8k | ~RequestKey() { | 101 | 27.8k | if (Kind == StorageKind::Normal) | 102 | 6.23k | Req.~Request(); | 103 | 27.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvED2Ev Line | Count | Source | 100 | 8.05k | ~RequestKey() { | 101 | 8.05k | if (Kind == StorageKind::Normal) | 102 | 1.00k | Req.~Request(); | 103 | 8.05k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvED2Ev Line | Count | Source | 100 | 1.13k | ~RequestKey() { | 101 | 1.13k | if (Kind == StorageKind::Normal) | 102 | 66 | Req.~Request(); | 103 | 1.13k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvED2Ev Line | Count | Source | 100 | 13.3k | ~RequestKey() { | 101 | 13.3k | if (Kind == StorageKind::Normal) | 102 | 875 | Req.~Request(); | 103 | 13.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvED2Ev Line | Count | Source | 100 | 146 | ~RequestKey() { | 101 | 146 | if (Kind == StorageKind::Normal) | 102 | 6 | Req.~Request(); | 103 | 146 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvED2Ev Line | Count | Source | 100 | 384 | ~RequestKey() { | 101 | 384 | if (Kind == StorageKind::Normal) | 102 | 42 | Req.~Request(); | 103 | 384 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvED2Ev Line | Count | Source | 100 | 46.1k | ~RequestKey() { | 101 | 46.1k | if (Kind == StorageKind::Normal) | 102 | 2.61k | Req.~Request(); | 103 | 46.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvED2Ev Line | Count | Source | 100 | 10.8k | ~RequestKey() { | 101 | 10.8k | if (Kind == StorageKind::Normal) | 102 | 2.21k | Req.~Request(); | 103 | 10.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvED2Ev Line | Count | Source | 100 | 3.07k | ~RequestKey() { | 101 | 3.07k | if (Kind == StorageKind::Normal) | 102 | 21 | Req.~Request(); | 103 | 3.07k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvED2Ev Line | Count | Source | 100 | 3.49k | ~RequestKey() { | 101 | 3.49k | if (Kind == StorageKind::Normal) | 102 | 72 | Req.~Request(); | 103 | 3.49k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvED2Ev Line | Count | Source | 100 | 2.97k | ~RequestKey() { | 101 | 2.97k | if (Kind == StorageKind::Normal) | 102 | 195 | Req.~Request(); | 103 | 2.97k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvED2Ev Line | Count | Source | 100 | 283 | ~RequestKey() { | 101 | 283 | if (Kind == StorageKind::Normal) | 102 | 18 | Req.~Request(); | 103 | 283 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvED2Ev Line | Count | Source | 100 | 73 | ~RequestKey() { | 101 | 73 | if (Kind == StorageKind::Normal) | 102 | 3 | Req.~Request(); | 103 | 73 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvED2Ev Line | Count | Source | 100 | 18.0k | ~RequestKey() { | 101 | 18.0k | if (Kind == StorageKind::Normal) | 102 | 690 | Req.~Request(); | 103 | 18.0k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvED2Ev Line | Count | Source | 100 | 10.6k | ~RequestKey() { | 101 | 10.6k | if (Kind == StorageKind::Normal) | 102 | 1.38k | Req.~Request(); | 103 | 10.6k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvED2Ev Line | Count | Source | 100 | 9.70k | ~RequestKey() { | 101 | 9.70k | if (Kind == StorageKind::Normal) | 102 | 1.38k | Req.~Request(); | 103 | 9.70k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvED2Ev Line | Count | Source | 100 | 386k | ~RequestKey() { | 101 | 386k | if (Kind == StorageKind::Normal) | 102 | 28.7k | Req.~Request(); | 103 | 386k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvED2Ev Line | Count | Source | 100 | 17.8k | ~RequestKey() { | 101 | 17.8k | if (Kind == StorageKind::Normal) | 102 | 75 | Req.~Request(); | 103 | 17.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvED2Ev Line | Count | Source | 100 | 9.57k | ~RequestKey() { | 101 | 9.57k | if (Kind == StorageKind::Normal) | 102 | 1.54k | Req.~Request(); | 103 | 9.57k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvED2Ev Line | Count | Source | 100 | 2.29M | ~RequestKey() { | 101 | 2.29M | if (Kind == StorageKind::Normal) | 102 | 60 | Req.~Request(); | 103 | 2.29M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvED2Ev Line | Count | Source | 100 | 17.3k | ~RequestKey() { | 101 | 17.3k | if (Kind == StorageKind::Normal) | 102 | 72 | Req.~Request(); | 103 | 17.3k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvED2Ev Line | Count | Source | 100 | 1.23M | ~RequestKey() { | 101 | 1.23M | if (Kind == StorageKind::Normal) | 102 | 224k | Req.~Request(); | 103 | 1.23M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvED2Ev Line | Count | Source | 100 | 3.89M | ~RequestKey() { | 101 | 3.89M | if (Kind == StorageKind::Normal) | 102 | 1.18M | Req.~Request(); | 103 | 3.89M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvED2Ev Line | Count | Source | 100 | 4.79k | ~RequestKey() { | 101 | 4.79k | if (Kind == StorageKind::Normal) | 102 | 871 | Req.~Request(); | 103 | 4.79k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvED2Ev Line | Count | Source | 100 | 33.8k | ~RequestKey() { | 101 | 33.8k | if (Kind == StorageKind::Normal) | 102 | 24 | Req.~Request(); | 103 | 33.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvED2Ev Line | Count | Source | 100 | 9.45M | ~RequestKey() { | 101 | 9.45M | if (Kind == StorageKind::Normal) | 102 | 1.09M | Req.~Request(); | 103 | 9.45M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvED2Ev Line | Count | Source | 100 | 17.8k | ~RequestKey() { | 101 | 17.8k | if (Kind == StorageKind::Normal) | 102 | 4.03k | Req.~Request(); | 103 | 17.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvED2Ev Line | Count | Source | 100 | 17.8k | ~RequestKey() { | 101 | 17.8k | if (Kind == StorageKind::Normal) | 102 | 3.96k | Req.~Request(); | 103 | 17.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvED2Ev Line | Count | Source | 100 | 1.06M | ~RequestKey() { | 101 | 1.06M | if (Kind == StorageKind::Normal) | 102 | 278k | Req.~Request(); | 103 | 1.06M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvED2Ev Line | Count | Source | 100 | 319k | ~RequestKey() { | 101 | 319k | if (Kind == StorageKind::Normal) | 102 | 82.1k | Req.~Request(); | 103 | 319k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvED2Ev Line | Count | Source | 100 | 409k | ~RequestKey() { | 101 | 409k | if (Kind == StorageKind::Normal) | 102 | 100k | Req.~Request(); | 103 | 409k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvED2Ev Line | Count | Source | 100 | 259 | ~RequestKey() { | 101 | 259 | if (Kind == StorageKind::Normal) | 102 | 15 | Req.~Request(); | 103 | 259 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvED2Ev Line | Count | Source | 100 | 658 | ~RequestKey() { | 101 | 658 | if (Kind == StorageKind::Normal) | 102 | 66 | Req.~Request(); | 103 | 658 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvED2Ev Line | Count | Source | 100 | 308k | ~RequestKey() { | 101 | 308k | if (Kind == StorageKind::Normal) | 102 | 72.7k | Req.~Request(); | 103 | 308k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvED2Ev Line | Count | Source | 100 | 1.11M | ~RequestKey() { | 101 | 1.11M | if (Kind == StorageKind::Normal) | 102 | 298k | Req.~Request(); | 103 | 1.11M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvED2Ev Line | Count | Source | 100 | 373k | ~RequestKey() { | 101 | 373k | if (Kind == StorageKind::Normal) | 102 | 3.10k | Req.~Request(); | 103 | 373k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvED2Ev Line | Count | Source | 100 | 6.47k | ~RequestKey() { | 101 | 6.47k | if (Kind == StorageKind::Normal) | 102 | 1.63k | Req.~Request(); | 103 | 6.47k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvED2Ev Line | Count | Source | 100 | 389k | ~RequestKey() { | 101 | 389k | if (Kind == StorageKind::Normal) | 102 | 4.83k | Req.~Request(); | 103 | 389k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvED2Ev Line | Count | Source | 100 | 39.2k | ~RequestKey() { | 101 | 39.2k | if (Kind == StorageKind::Normal) | 102 | 8.50k | Req.~Request(); | 103 | 39.2k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvED2Ev Line | Count | Source | 100 | 10.0k | ~RequestKey() { | 101 | 10.0k | if (Kind == StorageKind::Normal) | 102 | 276 | Req.~Request(); | 103 | 10.0k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvED2Ev Line | Count | Source | 100 | 891k | ~RequestKey() { | 101 | 891k | if (Kind == StorageKind::Normal) | 102 | 279k | Req.~Request(); | 103 | 891k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvED2Ev Line | Count | Source | 100 | 557k | ~RequestKey() { | 101 | 557k | if (Kind == StorageKind::Normal) | 102 | 143k | Req.~Request(); | 103 | 557k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvED2Ev Line | Count | Source | 100 | 45.5k | ~RequestKey() { | 101 | 45.5k | if (Kind == StorageKind::Normal) | 102 | 18.8k | Req.~Request(); | 103 | 45.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvED2Ev Line | Count | Source | 100 | 56.2k | ~RequestKey() { | 101 | 56.2k | if (Kind == StorageKind::Normal) | 102 | 12.4k | Req.~Request(); | 103 | 56.2k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvED2Ev Line | Count | Source | 100 | 5.40M | ~RequestKey() { | 101 | 5.40M | if (Kind == StorageKind::Normal) | 102 | 524k | Req.~Request(); | 103 | 5.40M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvED2Ev Line | Count | Source | 100 | 362 | ~RequestKey() { | 101 | 362 | if (Kind == StorageKind::Normal) | 102 | 36 | Req.~Request(); | 103 | 362 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvED2Ev Line | Count | Source | 100 | 1.45M | ~RequestKey() { | 101 | 1.45M | if (Kind == StorageKind::Normal) | 102 | 297k | Req.~Request(); | 103 | 1.45M | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvED2Ev Line | Count | Source | 100 | 749k | ~RequestKey() { | 101 | 749k | if (Kind == StorageKind::Normal) | 102 | 42.2k | Req.~Request(); | 103 | 749k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvED2Ev Line | Count | Source | 100 | 141k | ~RequestKey() { | 101 | 141k | if (Kind == StorageKind::Normal) | 102 | 35.0k | Req.~Request(); | 103 | 141k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvED2Ev Line | Count | Source | 100 | 123k | ~RequestKey() { | 101 | 123k | if (Kind == StorageKind::Normal) | 102 | 26.5k | Req.~Request(); | 103 | 123k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvED2Ev Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvED2Ev Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvED2Ev Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvED2Ev DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvED2Ev Line | Count | Source | 100 | 324 | ~RequestKey() { | 101 | 324 | if (Kind == StorageKind::Normal) | 102 | 24 | Req.~Request(); | 103 | 324 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvED2Ev Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvED2Ev DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvED2Ev Line | Count | Source | 100 | 340 | ~RequestKey() { | 101 | 340 | if (Kind == StorageKind::Normal) | 102 | 12 | Req.~Request(); | 103 | 340 | } |
DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvED2Ev Line | Count | Source | 100 | 28.1k | ~RequestKey() { | 101 | 28.1k | if (Kind == StorageKind::Normal) | 102 | 7.73k | Req.~Request(); | 103 | 28.1k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvED2Ev Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvED2Ev Line | Count | Source | 100 | 572k | ~RequestKey() { | 101 | 572k | if (Kind == StorageKind::Normal) | 102 | 79.3k | Req.~Request(); | 103 | 572k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvED2Ev Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvED2Ev Line | Count | Source | 100 | 29.4k | ~RequestKey() { | 101 | 29.4k | if (Kind == StorageKind::Normal) | 102 | 9.52k | Req.~Request(); | 103 | 29.4k | } |
Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvED2Ev Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvED2Ev Line | Count | Source | 100 | 1.47M | ~RequestKey() { | 101 | 1.47M | if (Kind == StorageKind::Normal) | 102 | 11.0k | Req.~Request(); | 103 | 1.47M | } |
GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvED2Ev Line | Count | Source | 100 | 97.3k | ~RequestKey() { | 101 | 97.3k | if (Kind == StorageKind::Normal) | 102 | 13.2k | Req.~Request(); | 103 | 97.3k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvED2Ev Line | Count | Source | 100 | 845 | ~RequestKey() { | 101 | 845 | if (Kind == StorageKind::Normal) | 102 | 33 | Req.~Request(); | 103 | 845 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvED2Ev Line | Count | Source | 100 | 20.7k | ~RequestKey() { | 101 | 20.7k | if (Kind == StorageKind::Normal) | 102 | 804 | Req.~Request(); | 103 | 20.7k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvED2Ev Line | Count | Source | 100 | 16.2k | ~RequestKey() { | 101 | 16.2k | if (Kind == StorageKind::Normal) | 102 | 630 | Req.~Request(); | 103 | 16.2k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvED2Ev Line | Count | Source | 100 | 267 | ~RequestKey() { | 101 | 267 | if (Kind == StorageKind::Normal) | 102 | 27 | Req.~Request(); | 103 | 267 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvED2Ev Line | Count | Source | 100 | 2.48M | ~RequestKey() { | 101 | 2.48M | if (Kind == StorageKind::Normal) | 102 | 33.1k | Req.~Request(); | 103 | 2.48M | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39ImplicitKnownProtocolConformanceRequestEvED2Ev Line | Count | Source | 100 | 98.4k | ~RequestKey() { | 101 | 98.4k | if (Kind == StorageKind::Normal) | 102 | 14.8k | Req.~Request(); | 103 | 98.4k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvED2Ev Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvED2Ev Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvED2Ev Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvED2Ev Line | Count | Source | 100 | 5.08M | ~RequestKey() { | 101 | 5.08M | if (Kind == StorageKind::Normal) | 102 | 585k | Req.~Request(); | 103 | 5.08M | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvED2Ev Line | Count | Source | 100 | 7.33k | ~RequestKey() { | 101 | 7.33k | if (Kind == StorageKind::Normal) | 102 | 672 | Req.~Request(); | 103 | 7.33k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvED2Ev Line | Count | Source | 100 | 95.1k | ~RequestKey() { | 101 | 95.1k | if (Kind == StorageKind::Normal) | 102 | 2.76k | Req.~Request(); | 103 | 95.1k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvED2Ev Line | Count | Source | 100 | 20.9k | ~RequestKey() { | 101 | 20.9k | if (Kind == StorageKind::Normal) | 102 | 1.84k | Req.~Request(); | 103 | 20.9k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvED2Ev Line | Count | Source | 100 | 17.6k | ~RequestKey() { | 101 | 17.6k | if (Kind == StorageKind::Normal) | 102 | 300 | Req.~Request(); | 103 | 17.6k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvED2Ev Line | Count | Source | 100 | 145k | ~RequestKey() { | 101 | 145k | if (Kind == StorageKind::Normal) | 102 | 33.6k | Req.~Request(); | 103 | 145k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvED2Ev NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvED2Ev Line | Count | Source | 100 | 1.20M | ~RequestKey() { | 101 | 1.20M | if (Kind == StorageKind::Normal) | 102 | 328k | Req.~Request(); | 103 | 1.20M | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvED2Ev Line | Count | Source | 100 | 77.2k | ~RequestKey() { | 101 | 77.2k | if (Kind == StorageKind::Normal) | 102 | 561 | Req.~Request(); | 103 | 77.2k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvED2Ev Line | Count | Source | 100 | 2.39k | ~RequestKey() { | 101 | 2.39k | if (Kind == StorageKind::Normal) | 102 | 231 | Req.~Request(); | 103 | 2.39k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvED2Ev Line | Count | Source | 100 | 165k | ~RequestKey() { | 101 | 165k | if (Kind == StorageKind::Normal) | 102 | 18.1k | Req.~Request(); | 103 | 165k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvED2Ev Line | Count | Source | 100 | 2.24k | ~RequestKey() { | 101 | 2.24k | if (Kind == StorageKind::Normal) | 102 | 447 | Req.~Request(); | 103 | 2.24k | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvED2Ev Line | Count | Source | 100 | 53.9k | ~RequestKey() { | 101 | 53.9k | if (Kind == StorageKind::Normal) | 102 | 6.83k | Req.~Request(); | 103 | 53.9k | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvED2Ev Line | Count | Source | 100 | 462 | ~RequestKey() { | 101 | 462 | if (Kind == StorageKind::Normal) | 102 | 24 | Req.~Request(); | 103 | 462 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvED2Ev OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvED2Ev Line | Count | Source | 100 | 22.1k | ~RequestKey() { | 101 | 22.1k | if (Kind == StorageKind::Normal) | 102 | 1.84k | Req.~Request(); | 103 | 22.1k | } |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvED2Ev ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvED2Ev Line | Count | Source | 100 | 897k | ~RequestKey() { | 101 | 897k | if (Kind == StorageKind::Normal) | 102 | 73.5k | Req.~Request(); | 103 | 897k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvED2Ev Line | Count | Source | 100 | 1.77k | ~RequestKey() { | 101 | 1.77k | if (Kind == StorageKind::Normal) | 102 | 186 | Req.~Request(); | 103 | 1.77k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvED2Ev Line | Count | Source | 100 | 7.99k | ~RequestKey() { | 101 | 7.99k | if (Kind == StorageKind::Normal) | 102 | 2.20k | Req.~Request(); | 103 | 7.99k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvED2Ev Line | Count | Source | 100 | 1.82k | ~RequestKey() { | 101 | 1.82k | if (Kind == StorageKind::Normal) | 102 | 9 | Req.~Request(); | 103 | 1.82k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvED2Ev Line | Count | Source | 100 | 338k | ~RequestKey() { | 101 | 338k | if (Kind == StorageKind::Normal) | 102 | 49.7k | Req.~Request(); | 103 | 338k | } |
RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvED2Ev Line | Count | Source | 100 | 133k | ~RequestKey() { | 101 | 133k | if (Kind == StorageKind::Normal) | 102 | 33.9k | Req.~Request(); | 103 | 133k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvED2Ev Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvED2Ev Line | Count | Source | 100 | 192k | ~RequestKey() { | 101 | 192k | if (Kind == StorageKind::Normal) | 102 | 52.2k | Req.~Request(); | 103 | 192k | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvED2Ev Line | Count | Source | 100 | 3.23k | ~RequestKey() { | 101 | 3.23k | if (Kind == StorageKind::Normal) | 102 | 560 | Req.~Request(); | 103 | 3.23k | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvED2Ev Line | Count | Source | 100 | 1.78k | ~RequestKey() { | 101 | 1.78k | if (Kind == StorageKind::Normal) | 102 | 246 | Req.~Request(); | 103 | 1.78k | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20IsNoncopyableRequestEvED2Ev TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvED2Ev Line | Count | Source | 100 | 153k | ~RequestKey() { | 101 | 153k | if (Kind == StorageKind::Normal) | 102 | 33.9k | Req.~Request(); | 103 | 153k | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvED2Ev Line | Count | Source | 100 | 919k | ~RequestKey() { | 101 | 919k | if (Kind == StorageKind::Normal) | 102 | 114k | Req.~Request(); | 103 | 919k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvED2Ev |
104 | | |
105 | 123M | bool isStorageEqual(const Request &req) const { |
106 | 123M | if (Kind != StorageKind::Normal) |
107 | 75.5M | return false; |
108 | 48.3M | return Req == req; |
109 | 123M | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvE14isStorageEqualERKS3_ ClangSyntaxPrinter.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 86.3k | bool isStorageEqual(const Request &req) const { | 106 | 86.3k | if (Kind != StorageKind::Normal) | 107 | 52.8k | return false; | 108 | 33.4k | return Req == req; | 109 | 86.3k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Frontend.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ConstExtract.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: GenClass.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: GenDistributed.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: GenDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: GenEnum.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: GenHeap.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: GenMeta.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: IRGen.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvE14isStorageEqualERKS3_ IRGen.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 147 | bool isStorageEqual(const Request &req) const { | 106 | 147 | if (Kind != StorageKind::Normal) | 107 | 98 | return false; | 108 | 49 | return Req == req; | 109 | 147 | } |
SILGen.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 234 | bool isStorageEqual(const Request &req) const { | 106 | 234 | if (Kind != StorageKind::Normal) | 107 | 156 | return false; | 108 | 78 | return Req == req; | 109 | 234 | } |
Common.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 3.33k | bool isStorageEqual(const Request &req) const { | 106 | 3.33k | if (Kind != StorageKind::Normal) | 107 | 2.21k | return false; | 108 | 1.11k | return Req == req; | 109 | 3.33k | } |
Unexecuted instantiation: SILOptimizerRequests.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDERequests.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Serialization.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: BuilderTransform.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: CSApply.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvE14isStorageEqualERKS3_ CSRanking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 192k | bool isStorageEqual(const Request &req) const { | 106 | 192k | if (Kind != StorageKind::Normal) | 107 | 107k | return false; | 108 | 85.8k | return Req == req; | 109 | 192k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvE14isStorageEqualERKS3_ CSStep.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 41.6k | bool isStorageEqual(const Request &req) const { | 106 | 41.6k | if (Kind != StorageKind::Normal) | 107 | 27.2k | return false; | 108 | 14.3k | return Req == req; | 109 | 41.6k | } |
CodeSynthesis.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 11.2k | bool isStorageEqual(const Request &req) const { | 106 | 11.2k | if (Kind != StorageKind::Normal) | 107 | 7.64k | return false; | 108 | 3.63k | return Req == req; | 109 | 11.2k | } |
CodeSynthesis.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.70k | bool isStorageEqual(const Request &req) const { | 106 | 2.70k | if (Kind != StorageKind::Normal) | 107 | 2.30k | return false; | 108 | 393 | return Req == req; | 109 | 2.70k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvE14isStorageEqualERKS3_ ConstraintSystem.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.59k | bool isStorageEqual(const Request &req) const { | 106 | 2.59k | if (Kind != StorageKind::Normal) | 107 | 2.14k | return false; | 108 | 449 | return Req == req; | 109 | 2.59k | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: PreCheckExpr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsCCompatibleFuncDeclRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE14isStorageEqualERKS3_ TypeCheckDistributed.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 84 | bool isStorageEqual(const Request &req) const { | 106 | 84 | if (Kind != StorageKind::Normal) | 107 | 60 | return false; | 108 | 24 | return Req == req; | 109 | 84 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvE14isStorageEqualERKS3_ TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 15.0k | bool isStorageEqual(const Request &req) const { | 106 | 15.0k | if (Kind != StorageKind::Normal) | 107 | 11.0k | return false; | 108 | 3.98k | return Req == req; | 109 | 15.0k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE14isStorageEqualERKS3_ TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 52.4k | bool isStorageEqual(const Request &req) const { | 106 | 52.4k | if (Kind != StorageKind::Normal) | 107 | 34.6k | return false; | 108 | 17.7k | return Req == req; | 109 | 52.4k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvE14isStorageEqualERKS3_ TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 18.5k | bool isStorageEqual(const Request &req) const { | 106 | 18.5k | if (Kind != StorageKind::Normal) | 107 | 10.7k | return false; | 108 | 7.74k | return Req == req; | 109 | 18.5k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE14isStorageEqualERKS3_ TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.45M | bool isStorageEqual(const Request &req) const { | 106 | 1.45M | if (Kind != StorageKind::Normal) | 107 | 800k | return false; | 108 | 654k | return Req == req; | 109 | 1.45M | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvE14isStorageEqualERKS3_ TypeCheckExpr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 491k | bool isStorageEqual(const Request &req) const { | 106 | 491k | if (Kind != StorageKind::Normal) | 107 | 478k | return false; | 108 | 12.8k | return Req == req; | 109 | 491k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckInvertible.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvE14isStorageEqualERKS3_ TypeCheckMacros.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 24 | bool isStorageEqual(const Request &req) const { | 106 | 24 | if (Kind != StorageKind::Normal) | 107 | 24 | return false; | 108 | 0 | return Req == req; | 109 | 24 | } |
TypeCheckMacros.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 24 | bool isStorageEqual(const Request &req) const { | 106 | 24 | if (Kind != StorageKind::Normal) | 107 | 16 | return false; | 108 | 8 | return Req == req; | 109 | 24 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvE14isStorageEqualERKS3_ TypeCheckPattern.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 157k | bool isStorageEqual(const Request &req) const { | 106 | 157k | if (Kind != StorageKind::Normal) | 107 | 95.5k | return false; | 108 | 61.6k | return Req == req; | 109 | 157k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvE14isStorageEqualERKS3_ TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 691 | bool isStorageEqual(const Request &req) const { | 106 | 691 | if (Kind != StorageKind::Normal) | 107 | 552 | return false; | 108 | 139 | return Req == req; | 109 | 691 | } |
TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 13.2k | bool isStorageEqual(const Request &req) const { | 106 | 13.2k | if (Kind != StorageKind::Normal) | 107 | 8.00k | return false; | 108 | 5.21k | return Req == req; | 109 | 13.2k | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE14isStorageEqualERKS3_ TypeCheckStmt.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 87.9k | bool isStorageEqual(const Request &req) const { | 106 | 87.9k | if (Kind != StorageKind::Normal) | 107 | 60.2k | return false; | 108 | 27.7k | return Req == req; | 109 | 87.9k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvE14isStorageEqualERKS3_ TypeCheckStorage.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 466 | bool isStorageEqual(const Request &req) const { | 106 | 466 | if (Kind != StorageKind::Normal) | 107 | 338 | return false; | 108 | 128 | return Req == req; | 109 | 466 | } |
TypeCheckStorage.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 121k | bool isStorageEqual(const Request &req) const { | 106 | 121k | if (Kind != StorageKind::Normal) | 107 | 83.6k | return false; | 108 | 37.3k | return Req == req; | 109 | 121k | } |
TypeChecker.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 489 | bool isStorageEqual(const Request &req) const { | 106 | 489 | if (Kind != StorageKind::Normal) | 107 | 326 | return false; | 108 | 163 | return Req == req; | 109 | 489 | } |
TypeChecker.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.72k | bool isStorageEqual(const Request &req) const { | 106 | 1.72k | if (Kind != StorageKind::Normal) | 107 | 1.14k | return false; | 108 | 574 | return Req == req; | 109 | 1.72k | } |
TypeChecker.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.10k | bool isStorageEqual(const Request &req) const { | 106 | 2.10k | if (Kind != StorageKind::Normal) | 107 | 1.72k | return false; | 108 | 379 | return Req == req; | 109 | 2.10k | } |
TypeChecker.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.05k | bool isStorageEqual(const Request &req) const { | 106 | 2.05k | if (Kind != StorageKind::Normal) | 107 | 1.72k | return false; | 108 | 334 | return Req == req; | 109 | 2.05k | } |
TypeChecker.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.72k | bool isStorageEqual(const Request &req) const { | 106 | 1.72k | if (Kind != StorageKind::Normal) | 107 | 1.14k | return false; | 108 | 574 | return Req == req; | 109 | 1.72k | } |
TypeChecker.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 32.5k | bool isStorageEqual(const Request &req) const { | 106 | 32.5k | if (Kind != StorageKind::Normal) | 107 | 23.4k | return false; | 108 | 9.04k | return Req == req; | 109 | 32.5k | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: Parser.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ParseRequests.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvE14isStorageEqualERKS3_ ASTContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 15 | bool isStorageEqual(const Request &req) const { | 106 | 15 | if (Kind != StorageKind::Normal) | 107 | 10 | return false; | 108 | 5 | return Req == req; | 109 | 15 | } |
Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 108 | bool isStorageEqual(const Request &req) const { | 106 | 108 | if (Kind != StorageKind::Normal) | 107 | 92 | return false; | 108 | 16 | return Req == req; | 109 | 108 | } |
Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvE14isStorageEqualERKS3_ Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 12.9k | bool isStorageEqual(const Request &req) const { | 106 | 12.9k | if (Kind != StorageKind::Normal) | 107 | 9.15k | return false; | 108 | 3.76k | return Req == req; | 109 | 12.9k | } |
Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvE14isStorageEqualERKS3_ Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 8.98k | bool isStorageEqual(const Request &req) const { | 106 | 8.98k | if (Kind != StorageKind::Normal) | 107 | 5.78k | return false; | 108 | 3.19k | return Req == req; | 109 | 8.98k | } |
Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 10.1k | bool isStorageEqual(const Request &req) const { | 106 | 10.1k | if (Kind != StorageKind::Normal) | 107 | 6.47k | return false; | 108 | 3.66k | return Req == req; | 109 | 10.1k | } |
Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 629 | bool isStorageEqual(const Request &req) const { | 106 | 629 | if (Kind != StorageKind::Normal) | 107 | 403 | return false; | 108 | 226 | return Req == req; | 109 | 629 | } |
Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvE14isStorageEqualERKS3_ Availability.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 3.38k | bool isStorageEqual(const Request &req) const { | 106 | 3.38k | if (Kind != StorageKind::Normal) | 107 | 2.36k | return false; | 108 | 1.01k | return Req == req; | 109 | 3.38k | } |
Availability.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 963k | bool isStorageEqual(const Request &req) const { | 106 | 963k | if (Kind != StorageKind::Normal) | 107 | 547k | return false; | 108 | 415k | return Req == req; | 109 | 963k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 4.85M | bool isStorageEqual(const Request &req) const { | 106 | 4.85M | if (Kind != StorageKind::Normal) | 107 | 2.81M | return false; | 108 | 2.04M | return Req == req; | 109 | 4.85M | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.78M | bool isStorageEqual(const Request &req) const { | 106 | 1.78M | if (Kind != StorageKind::Normal) | 107 | 1.08M | return false; | 108 | 695k | return Req == req; | 109 | 1.78M | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.32k | bool isStorageEqual(const Request &req) const { | 106 | 2.32k | if (Kind != StorageKind::Normal) | 107 | 1.50k | return false; | 108 | 812 | return Req == req; | 109 | 2.32k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 12.9M | bool isStorageEqual(const Request &req) const { | 106 | 12.9M | if (Kind != StorageKind::Normal) | 107 | 6.69M | return false; | 108 | 6.27M | return Req == req; | 109 | 12.9M | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 96 | bool isStorageEqual(const Request &req) const { | 106 | 96 | if (Kind != StorageKind::Normal) | 107 | 87 | return false; | 108 | 9 | return Req == req; | 109 | 96 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.51M | bool isStorageEqual(const Request &req) const { | 106 | 2.51M | if (Kind != StorageKind::Normal) | 107 | 1.89M | return false; | 108 | 621k | return Req == req; | 109 | 2.51M | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 274 | bool isStorageEqual(const Request &req) const { | 106 | 274 | if (Kind != StorageKind::Normal) | 107 | 178 | return false; | 108 | 96 | return Req == req; | 109 | 274 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 18 | bool isStorageEqual(const Request &req) const { | 106 | 18 | if (Kind != StorageKind::Normal) | 107 | 17 | return false; | 108 | 1 | return Req == req; | 109 | 18 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 125k | bool isStorageEqual(const Request &req) const { | 106 | 125k | if (Kind != StorageKind::Normal) | 107 | 73.1k | return false; | 108 | 52.5k | return Req == req; | 109 | 125k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 3.27k | bool isStorageEqual(const Request &req) const { | 106 | 3.27k | if (Kind != StorageKind::Normal) | 107 | 3.07k | return false; | 108 | 203 | return Req == req; | 109 | 3.27k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 3.07k | bool isStorageEqual(const Request &req) const { | 106 | 3.07k | if (Kind != StorageKind::Normal) | 107 | 2.41k | return false; | 108 | 658 | return Req == req; | 109 | 3.07k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 39.6k | bool isStorageEqual(const Request &req) const { | 106 | 39.6k | if (Kind != StorageKind::Normal) | 107 | 26.8k | return false; | 108 | 12.8k | return Req == req; | 109 | 39.6k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 5.38k | bool isStorageEqual(const Request &req) const { | 106 | 5.38k | if (Kind != StorageKind::Normal) | 107 | 4.70k | return false; | 108 | 686 | return Req == req; | 109 | 5.38k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 5.78k | bool isStorageEqual(const Request &req) const { | 106 | 5.78k | if (Kind != StorageKind::Normal) | 107 | 5.25k | return false; | 108 | 528 | return Req == req; | 109 | 5.78k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 13.2k | bool isStorageEqual(const Request &req) const { | 106 | 13.2k | if (Kind != StorageKind::Normal) | 107 | 9.68k | return false; | 108 | 3.61k | return Req == req; | 109 | 13.2k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 67.2k | bool isStorageEqual(const Request &req) const { | 106 | 67.2k | if (Kind != StorageKind::Normal) | 107 | 45.7k | return false; | 108 | 21.4k | return Req == req; | 109 | 67.2k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 232k | bool isStorageEqual(const Request &req) const { | 106 | 232k | if (Kind != StorageKind::Normal) | 107 | 209k | return false; | 108 | 23.8k | return Req == req; | 109 | 232k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 30 | bool isStorageEqual(const Request &req) const { | 106 | 30 | if (Kind != StorageKind::Normal) | 107 | 20 | return false; | 108 | 10 | return Req == req; | 109 | 30 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 451k | bool isStorageEqual(const Request &req) const { | 106 | 451k | if (Kind != StorageKind::Normal) | 107 | 350k | return false; | 108 | 101k | return Req == req; | 109 | 451k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.22k | bool isStorageEqual(const Request &req) const { | 106 | 1.22k | if (Kind != StorageKind::Normal) | 107 | 1.16k | return false; | 108 | 60 | return Req == req; | 109 | 1.22k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsEscapableRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 14.2k | bool isStorageEqual(const Request &req) const { | 106 | 14.2k | if (Kind != StorageKind::Normal) | 107 | 10.2k | return false; | 108 | 3.99k | return Req == req; | 109 | 14.2k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.11M | bool isStorageEqual(const Request &req) const { | 106 | 1.11M | if (Kind != StorageKind::Normal) | 107 | 679k | return false; | 108 | 436k | return Req == req; | 109 | 1.11M | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 22.7M | bool isStorageEqual(const Request &req) const { | 106 | 22.7M | if (Kind != StorageKind::Normal) | 107 | 15.7M | return false; | 108 | 7.00M | return Req == req; | 109 | 22.7M | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 309k | bool isStorageEqual(const Request &req) const { | 106 | 309k | if (Kind != StorageKind::Normal) | 107 | 306k | return false; | 108 | 2.18k | return Req == req; | 109 | 309k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31HasNoncopyableAnnotationRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 19.5M | bool isStorageEqual(const Request &req) const { | 106 | 19.5M | if (Kind != StorageKind::Normal) | 107 | 11.9M | return false; | 108 | 7.63M | return Req == req; | 109 | 19.5M | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 10.8k | bool isStorageEqual(const Request &req) const { | 106 | 10.8k | if (Kind != StorageKind::Normal) | 107 | 7.46k | return false; | 108 | 3.36k | return Req == req; | 109 | 10.8k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 6.16k | bool isStorageEqual(const Request &req) const { | 106 | 6.16k | if (Kind != StorageKind::Normal) | 107 | 4.76k | return false; | 108 | 1.40k | return Req == req; | 109 | 6.16k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 17.7k | bool isStorageEqual(const Request &req) const { | 106 | 17.7k | if (Kind != StorageKind::Normal) | 107 | 11.0k | return false; | 108 | 6.74k | return Req == req; | 109 | 17.7k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 5.18k | bool isStorageEqual(const Request &req) const { | 106 | 5.18k | if (Kind != StorageKind::Normal) | 107 | 3.44k | return false; | 108 | 1.73k | return Req == req; | 109 | 5.18k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 5.49M | bool isStorageEqual(const Request &req) const { | 106 | 5.49M | if (Kind != StorageKind::Normal) | 107 | 3.24M | return false; | 108 | 2.24M | return Req == req; | 109 | 5.49M | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.50M | bool isStorageEqual(const Request &req) const { | 106 | 1.50M | if (Kind != StorageKind::Normal) | 107 | 871k | return false; | 108 | 632k | return Req == req; | 109 | 1.50M | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 6.84k | bool isStorageEqual(const Request &req) const { | 106 | 6.84k | if (Kind != StorageKind::Normal) | 107 | 6.53k | return false; | 108 | 309 | return Req == req; | 109 | 6.84k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 143 | bool isStorageEqual(const Request &req) const { | 106 | 143 | if (Kind != StorageKind::Normal) | 107 | 101 | return false; | 108 | 42 | return Req == req; | 109 | 143 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 40.8k | bool isStorageEqual(const Request &req) const { | 106 | 40.8k | if (Kind != StorageKind::Normal) | 107 | 22.8k | return false; | 108 | 18.0k | return Req == req; | 109 | 40.8k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 5.94k | bool isStorageEqual(const Request &req) const { | 106 | 5.94k | if (Kind != StorageKind::Normal) | 107 | 4.61k | return false; | 108 | 1.33k | return Req == req; | 109 | 5.94k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.80k | bool isStorageEqual(const Request &req) const { | 106 | 2.80k | if (Kind != StorageKind::Normal) | 107 | 2.14k | return false; | 108 | 654 | return Req == req; | 109 | 2.80k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 7.28k | bool isStorageEqual(const Request &req) const { | 106 | 7.28k | if (Kind != StorageKind::Normal) | 107 | 4.61k | return false; | 108 | 2.67k | return Req == req; | 109 | 7.28k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 5.13k | bool isStorageEqual(const Request &req) const { | 106 | 5.13k | if (Kind != StorageKind::Normal) | 107 | 4.26k | return false; | 108 | 872 | return Req == req; | 109 | 5.13k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 748 | bool isStorageEqual(const Request &req) const { | 106 | 748 | if (Kind != StorageKind::Normal) | 107 | 720 | return false; | 108 | 28 | return Req == req; | 109 | 748 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 303 | bool isStorageEqual(const Request &req) const { | 106 | 303 | if (Kind != StorageKind::Normal) | 107 | 212 | return false; | 108 | 91 | return Req == req; | 109 | 303 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 13.2k | bool isStorageEqual(const Request &req) const { | 106 | 13.2k | if (Kind != StorageKind::Normal) | 107 | 8.75k | return false; | 108 | 4.45k | return Req == req; | 109 | 13.2k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 48 | bool isStorageEqual(const Request &req) const { | 106 | 48 | if (Kind != StorageKind::Normal) | 107 | 32 | return false; | 108 | 16 | return Req == req; | 109 | 48 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 51.1k | bool isStorageEqual(const Request &req) const { | 106 | 51.1k | if (Kind != StorageKind::Normal) | 107 | 32.2k | return false; | 108 | 18.8k | return Req == req; | 109 | 51.1k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.17k | bool isStorageEqual(const Request &req) const { | 106 | 2.17k | if (Kind != StorageKind::Normal) | 107 | 1.82k | return false; | 108 | 351 | return Req == req; | 109 | 2.17k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 4.19k | bool isStorageEqual(const Request &req) const { | 106 | 4.19k | if (Kind != StorageKind::Normal) | 107 | 3.96k | return false; | 108 | 230 | return Req == req; | 109 | 4.19k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 3.92k | bool isStorageEqual(const Request &req) const { | 106 | 3.92k | if (Kind != StorageKind::Normal) | 107 | 3.87k | return false; | 108 | 49 | return Req == req; | 109 | 3.92k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 3.13k | bool isStorageEqual(const Request &req) const { | 106 | 3.13k | if (Kind != StorageKind::Normal) | 107 | 1.96k | return false; | 108 | 1.17k | return Req == req; | 109 | 3.13k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 71 | bool isStorageEqual(const Request &req) const { | 106 | 71 | if (Kind != StorageKind::Normal) | 107 | 66 | return false; | 108 | 5 | return Req == req; | 109 | 71 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 20.1k | bool isStorageEqual(const Request &req) const { | 106 | 20.1k | if (Kind != StorageKind::Normal) | 107 | 13.5k | return false; | 108 | 6.55k | return Req == req; | 109 | 20.1k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.61k | bool isStorageEqual(const Request &req) const { | 106 | 2.61k | if (Kind != StorageKind::Normal) | 107 | 1.99k | return false; | 108 | 616 | return Req == req; | 109 | 2.61k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.11k | bool isStorageEqual(const Request &req) const { | 106 | 1.11k | if (Kind != StorageKind::Normal) | 107 | 1.06k | return false; | 108 | 54 | return Req == req; | 109 | 1.11k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 509k | bool isStorageEqual(const Request &req) const { | 106 | 509k | if (Kind != StorageKind::Normal) | 107 | 312k | return false; | 108 | 197k | return Req == req; | 109 | 509k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 25.6k | bool isStorageEqual(const Request &req) const { | 106 | 25.6k | if (Kind != StorageKind::Normal) | 107 | 24.9k | return false; | 108 | 764 | return Req == req; | 109 | 25.6k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.78k | bool isStorageEqual(const Request &req) const { | 106 | 1.78k | if (Kind != StorageKind::Normal) | 107 | 1.52k | return false; | 108 | 263 | return Req == req; | 109 | 1.78k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 4.31M | bool isStorageEqual(const Request &req) const { | 106 | 4.31M | if (Kind != StorageKind::Normal) | 107 | 2.35M | return false; | 108 | 1.95M | return Req == req; | 109 | 4.31M | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 25.9k | bool isStorageEqual(const Request &req) const { | 106 | 25.9k | if (Kind != StorageKind::Normal) | 107 | 24.7k | return false; | 108 | 1.22k | return Req == req; | 109 | 25.9k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.00M | bool isStorageEqual(const Request &req) const { | 106 | 1.00M | if (Kind != StorageKind::Normal) | 107 | 574k | return false; | 108 | 430k | return Req == req; | 109 | 1.00M | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 312k | bool isStorageEqual(const Request &req) const { | 106 | 312k | if (Kind != StorageKind::Normal) | 107 | 200k | return false; | 108 | 111k | return Req == req; | 109 | 312k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.72k | bool isStorageEqual(const Request &req) const { | 106 | 1.72k | if (Kind != StorageKind::Normal) | 107 | 1.62k | return false; | 108 | 99 | return Req == req; | 109 | 1.72k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 51.7k | bool isStorageEqual(const Request &req) const { | 106 | 51.7k | if (Kind != StorageKind::Normal) | 107 | 50.4k | return false; | 108 | 1.29k | return Req == req; | 109 | 51.7k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 10.8M | bool isStorageEqual(const Request &req) const { | 106 | 10.8M | if (Kind != StorageKind::Normal) | 107 | 6.21M | return false; | 108 | 4.68M | return Req == req; | 109 | 10.8M | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 4.49k | bool isStorageEqual(const Request &req) const { | 106 | 4.49k | if (Kind != StorageKind::Normal) | 107 | 3.56k | return false; | 108 | 936 | return Req == req; | 109 | 4.49k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 4.54k | bool isStorageEqual(const Request &req) const { | 106 | 4.54k | if (Kind != StorageKind::Normal) | 107 | 3.63k | return false; | 108 | 915 | return Req == req; | 109 | 4.54k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 376k | bool isStorageEqual(const Request &req) const { | 106 | 376k | if (Kind != StorageKind::Normal) | 107 | 247k | return false; | 108 | 128k | return Req == req; | 109 | 376k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 110k | bool isStorageEqual(const Request &req) const { | 106 | 110k | if (Kind != StorageKind::Normal) | 107 | 74.0k | return false; | 108 | 36.6k | return Req == req; | 109 | 110k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 191k | bool isStorageEqual(const Request &req) const { | 106 | 191k | if (Kind != StorageKind::Normal) | 107 | 113k | return false; | 108 | 78.7k | return Req == req; | 109 | 191k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 42 | bool isStorageEqual(const Request &req) const { | 106 | 42 | if (Kind != StorageKind::Normal) | 107 | 30 | return false; | 108 | 12 | return Req == req; | 109 | 42 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 198 | bool isStorageEqual(const Request &req) const { | 106 | 198 | if (Kind != StorageKind::Normal) | 107 | 124 | return false; | 108 | 74 | return Req == req; | 109 | 198 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 161k | bool isStorageEqual(const Request &req) const { | 106 | 161k | if (Kind != StorageKind::Normal) | 107 | 95.6k | return false; | 108 | 66.0k | return Req == req; | 109 | 161k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 352k | bool isStorageEqual(const Request &req) const { | 106 | 352k | if (Kind != StorageKind::Normal) | 107 | 230k | return false; | 108 | 121k | return Req == req; | 109 | 352k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 641k | bool isStorageEqual(const Request &req) const { | 106 | 641k | if (Kind != StorageKind::Normal) | 107 | 536k | return false; | 108 | 104k | return Req == req; | 109 | 641k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.94k | bool isStorageEqual(const Request &req) const { | 106 | 2.94k | if (Kind != StorageKind::Normal) | 107 | 1.98k | return false; | 108 | 953 | return Req == req; | 109 | 2.94k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 809k | bool isStorageEqual(const Request &req) const { | 106 | 809k | if (Kind != StorageKind::Normal) | 107 | 557k | return false; | 108 | 251k | return Req == req; | 109 | 809k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 21.4k | bool isStorageEqual(const Request &req) const { | 106 | 21.4k | if (Kind != StorageKind::Normal) | 107 | 12.3k | return false; | 108 | 9.11k | return Req == req; | 109 | 21.4k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 17.0k | bool isStorageEqual(const Request &req) const { | 106 | 17.0k | if (Kind != StorageKind::Normal) | 107 | 10.7k | return false; | 108 | 6.34k | return Req == req; | 109 | 17.0k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 14.0k | bool isStorageEqual(const Request &req) const { | 106 | 14.0k | if (Kind != StorageKind::Normal) | 107 | 8.87k | return false; | 108 | 5.13k | return Req == req; | 109 | 14.0k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 181k | bool isStorageEqual(const Request &req) const { | 106 | 181k | if (Kind != StorageKind::Normal) | 107 | 106k | return false; | 108 | 75.0k | return Req == req; | 109 | 181k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 10.6k | bool isStorageEqual(const Request &req) const { | 106 | 10.6k | if (Kind != StorageKind::Normal) | 107 | 7.39k | return false; | 108 | 3.22k | return Req == req; | 109 | 10.6k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 28.0k | bool isStorageEqual(const Request &req) const { | 106 | 28.0k | if (Kind != StorageKind::Normal) | 107 | 17.3k | return false; | 108 | 10.7k | return Req == req; | 109 | 28.0k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 6.82M | bool isStorageEqual(const Request &req) const { | 106 | 6.82M | if (Kind != StorageKind::Normal) | 107 | 4.02M | return false; | 108 | 2.80M | return Req == req; | 109 | 6.82M | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 35 | bool isStorageEqual(const Request &req) const { | 106 | 35 | if (Kind != StorageKind::Normal) | 107 | 30 | return false; | 108 | 5 | return Req == req; | 109 | 35 | } |
DeclContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.06M | bool isStorageEqual(const Request &req) const { | 106 | 1.06M | if (Kind != StorageKind::Normal) | 107 | 569k | return false; | 108 | 499k | return Req == req; | 109 | 1.06M | } |
DeclContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.04M | bool isStorageEqual(const Request &req) const { | 106 | 1.04M | if (Kind != StorageKind::Normal) | 107 | 615k | return false; | 108 | 426k | return Req == req; | 109 | 1.04M | } |
DeclContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 53.9k | bool isStorageEqual(const Request &req) const { | 106 | 53.9k | if (Kind != StorageKind::Normal) | 107 | 36.7k | return false; | 108 | 17.2k | return Req == req; | 109 | 53.9k | } |
DeclContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 67.6k | bool isStorageEqual(const Request &req) const { | 106 | 67.6k | if (Kind != StorageKind::Normal) | 107 | 42.0k | return false; | 108 | 25.6k | return Req == req; | 109 | 67.6k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvE14isStorageEqualERKS3_ DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 12 | bool isStorageEqual(const Request &req) const { | 106 | 12 | if (Kind != StorageKind::Normal) | 107 | 12 | return false; | 108 | 0 | return Req == req; | 109 | 12 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvE14isStorageEqualERKS3_ DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 72 | bool isStorageEqual(const Request &req) const { | 106 | 72 | if (Kind != StorageKind::Normal) | 107 | 48 | return false; | 108 | 24 | return Req == req; | 109 | 72 | } |
DocComment.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 8.12k | bool isStorageEqual(const Request &req) const { | 106 | 8.12k | if (Kind != StorageKind::Normal) | 107 | 5.62k | return false; | 108 | 2.50k | return Req == req; | 109 | 8.12k | } |
Unexecuted instantiation: Effects.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvE14isStorageEqualERKS3_ Effects.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 604k | bool isStorageEqual(const Request &req) const { | 106 | 604k | if (Kind != StorageKind::Normal) | 107 | 340k | return false; | 108 | 263k | return Req == req; | 109 | 604k | } |
Unexecuted instantiation: Effects.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Expr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Expr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE14isStorageEqualERKS3_ Expr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.51M | bool isStorageEqual(const Request &req) const { | 106 | 2.51M | if (Kind != StorageKind::Normal) | 107 | 1.44M | return false; | 108 | 1.07M | return Req == req; | 109 | 2.51M | } |
GenericSignature.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 84.8k | bool isStorageEqual(const Request &req) const { | 106 | 84.8k | if (Kind != StorageKind::Normal) | 107 | 54.4k | return false; | 108 | 30.4k | return Req == req; | 109 | 84.8k | } |
Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 63 | bool isStorageEqual(const Request &req) const { | 106 | 63 | if (Kind != StorageKind::Normal) | 107 | 42 | return false; | 108 | 21 | return Req == req; | 109 | 63 | } |
Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.76k | bool isStorageEqual(const Request &req) const { | 106 | 1.76k | if (Kind != StorageKind::Normal) | 107 | 1.17k | return false; | 108 | 587 | return Req == req; | 109 | 1.76k | } |
Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.40k | bool isStorageEqual(const Request &req) const { | 106 | 1.40k | if (Kind != StorageKind::Normal) | 107 | 938 | return false; | 108 | 469 | return Req == req; | 109 | 1.40k | } |
Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 20 | bool isStorageEqual(const Request &req) const { | 106 | 20 | if (Kind != StorageKind::Normal) | 107 | 18 | return false; | 108 | 2 | return Req == req; | 109 | 20 | } |
Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 3.91M | bool isStorageEqual(const Request &req) const { | 106 | 3.91M | if (Kind != StorageKind::Normal) | 107 | 2.38M | return false; | 108 | 1.52M | return Req == req; | 109 | 3.91M | } |
Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39ImplicitKnownProtocolConformanceRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 79.8k | bool isStorageEqual(const Request &req) const { | 106 | 79.8k | if (Kind != StorageKind::Normal) | 107 | 50.6k | return false; | 108 | 29.2k | return Req == req; | 109 | 79.8k | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvE14isStorageEqualERKS3_ Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 5.89M | bool isStorageEqual(const Request &req) const { | 106 | 5.89M | if (Kind != StorageKind::Normal) | 107 | 3.37M | return false; | 108 | 2.52M | return Req == req; | 109 | 5.89M | } |
Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.14k | bool isStorageEqual(const Request &req) const { | 106 | 1.14k | if (Kind != StorageKind::Normal) | 107 | 906 | return false; | 108 | 240 | return Req == req; | 109 | 1.14k | } |
Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 123k | bool isStorageEqual(const Request &req) const { | 106 | 123k | if (Kind != StorageKind::Normal) | 107 | 72.2k | return false; | 108 | 51.5k | return Req == req; | 109 | 123k | } |
Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.23k | bool isStorageEqual(const Request &req) const { | 106 | 1.23k | if (Kind != StorageKind::Normal) | 107 | 1.00k | return false; | 108 | 226 | return Req == req; | 109 | 1.23k | } |
Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 15.4k | bool isStorageEqual(const Request &req) const { | 106 | 15.4k | if (Kind != StorageKind::Normal) | 107 | 10.3k | return false; | 108 | 5.15k | return Req == req; | 109 | 15.4k | } |
NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 68.2k | bool isStorageEqual(const Request &req) const { | 106 | 68.2k | if (Kind != StorageKind::Normal) | 107 | 44.5k | return false; | 108 | 23.7k | return Req == req; | 109 | 68.2k | } |
Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE14isStorageEqualERKS3_ NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 346k | bool isStorageEqual(const Request &req) const { | 106 | 346k | if (Kind != StorageKind::Normal) | 107 | 232k | return false; | 108 | 113k | return Req == req; | 109 | 346k | } |
NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 120k | bool isStorageEqual(const Request &req) const { | 106 | 120k | if (Kind != StorageKind::Normal) | 107 | 100k | return false; | 108 | 20.2k | return Req == req; | 109 | 120k | } |
NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 506 | bool isStorageEqual(const Request &req) const { | 106 | 506 | if (Kind != StorageKind::Normal) | 107 | 381 | return false; | 108 | 125 | return Req == req; | 109 | 506 | } |
NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 199k | bool isStorageEqual(const Request &req) const { | 106 | 199k | if (Kind != StorageKind::Normal) | 107 | 112k | return false; | 108 | 86.3k | return Req == req; | 109 | 199k | } |
NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 759 | bool isStorageEqual(const Request &req) const { | 106 | 759 | if (Kind != StorageKind::Normal) | 107 | 602 | return false; | 108 | 157 | return Req == req; | 109 | 759 | } |
OperatorNameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 39.4k | bool isStorageEqual(const Request &req) const { | 106 | 39.4k | if (Kind != StorageKind::Normal) | 107 | 24.1k | return false; | 108 | 15.2k | return Req == req; | 109 | 39.4k | } |
OperatorNameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 18 | bool isStorageEqual(const Request &req) const { | 106 | 18 | if (Kind != StorageKind::Normal) | 107 | 14 | return false; | 108 | 4 | return Req == req; | 109 | 18 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvE14isStorageEqualERKS3_ OperatorNameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 13.3k | bool isStorageEqual(const Request &req) const { | 106 | 13.3k | if (Kind != StorageKind::Normal) | 107 | 8.51k | return false; | 108 | 4.78k | return Req == req; | 109 | 13.3k | } |
Unexecuted instantiation: Pattern.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvE14isStorageEqualERKS3_ ProtocolConformance.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.17M | bool isStorageEqual(const Request &req) const { | 106 | 1.17M | if (Kind != StorageKind::Normal) | 107 | 714k | return false; | 108 | 458k | return Req == req; | 109 | 1.17M | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ProtocolConformance.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvE14isStorageEqualERKS3_ ProtocolConformance.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.54k | bool isStorageEqual(const Request &req) const { | 106 | 2.54k | if (Kind != StorageKind::Normal) | 107 | 2.47k | return false; | 108 | 65 | return Req == req; | 109 | 2.54k | } |
ProtocolConformance.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 340k | bool isStorageEqual(const Request &req) const { | 106 | 340k | if (Kind != StorageKind::Normal) | 107 | 194k | return false; | 108 | 146k | return Req == req; | 109 | 340k | } |
RawComment.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 51.3k | bool isStorageEqual(const Request &req) const { | 106 | 51.3k | if (Kind != StorageKind::Normal) | 107 | 31.1k | return false; | 108 | 20.2k | return Req == req; | 109 | 51.3k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvE14isStorageEqualERKS3_ Stmt.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 53.9k | bool isStorageEqual(const Request &req) const { | 106 | 53.9k | if (Kind != StorageKind::Normal) | 107 | 38.0k | return false; | 108 | 15.8k | return Req == req; | 109 | 53.9k | } |
Stmt.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.64k | bool isStorageEqual(const Request &req) const { | 106 | 1.64k | if (Kind != StorageKind::Normal) | 107 | 1.15k | return false; | 108 | 491 | return Req == req; | 109 | 1.64k | } |
Stmt.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 759 | bool isStorageEqual(const Request &req) const { | 106 | 759 | if (Kind != StorageKind::Normal) | 107 | 556 | return false; | 108 | 203 | return Req == req; | 109 | 759 | } |
Unexecuted instantiation: Type.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20IsNoncopyableRequestEvE14isStorageEqualERKS3_ TypeCheckRequests.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 94.7k | bool isStorageEqual(const Request &req) const { | 106 | 94.7k | if (Kind != StorageKind::Normal) | 107 | 53.2k | return false; | 108 | 41.5k | return Req == req; | 109 | 94.7k | } |
TypeRefinementContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.08M | bool isStorageEqual(const Request &req) const { | 106 | 1.08M | if (Kind != StorageKind::Normal) | 107 | 567k | return false; | 108 | 514k | return Req == req; | 109 | 1.08M | } |
Unexecuted instantiation: USRGeneration.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvE14isStorageEqualERKS3_ |
110 | 129M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { |
111 | 129M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { |
112 | 5.70M | return lhs.Req == rhs.Req; |
113 | 123M | } else { |
114 | 123M | return lhs.Kind == rhs.Kind; |
115 | 123M | } |
116 | 129M | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18OptimizedIRRequestEvEES6_ Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22SymbolSourceMapRequestEvEES6_ ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20USRGenerationRequestEvEES6_ Line | Count | Source | 110 | 236k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 236k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 15.4k | return lhs.Req == rhs.Req; | 113 | 221k | } else { | 114 | 221k | return lhs.Kind == rhs.Kind; | 115 | 221k | } | 116 | 236k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18RenamedDeclRequestEvEES6_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24IDEInspectionFileRequestEvEES6_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEES6_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ConstantValueInfoRequestEvEES6_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22SymbolSourceMapRequestEvEES6_ IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_12IRGenRequestEvEES6_ Line | Count | Source | 110 | 3.43k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 3.43k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 3.43k | } else { | 114 | 3.43k | return lhs.Kind == rhs.Kind; | 115 | 3.43k | } | 116 | 3.43k | } |
Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17LoweredSILRequestEvEES6_ Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20PublicSymbolsRequestEvEES6_ Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18GenerateTBDRequestEvEES6_ Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_13APIGenRequestEvEES6_ SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18ASTLoweringRequestEvEES6_ Line | Count | Source | 110 | 5.46k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 5.46k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 5.46k | } else { | 114 | 5.46k | return lhs.Kind == rhs.Kind; | 115 | 5.46k | } | 116 | 5.46k | } |
Unexecuted instantiation: SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ParseSILModuleRequestEvEES6_ Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28TangentStoredPropertyRequestEvEES6_ Line | Count | Source | 110 | 2.22k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.22k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2 | return lhs.Req == rhs.Req; | 113 | 2.22k | } else { | 114 | 2.22k | return lhs.Kind == rhs.Kind; | 115 | 2.22k | } | 116 | 2.22k | } |
Unexecuted instantiation: PassManager.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25ExecuteSILPipelineRequestEvEES6_ Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18ASTLoweringRequestEvEES6_ Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ProvideDefaultImplForRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26ResolveProtocolNameRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ProvideDefaultImplForRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29CollectOverriddenDeclsRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23IsDeclApplicableRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24TypeRelationCheckRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_15InitKindRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23OpaqueResultTypeRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LazyStoragePropertyRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27DefaultInitializerIsolationEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23FunctionOperatorRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30OperatorPrecedenceGroupRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22MacroDefinitionRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17HasStorageRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27DirectOperatorLookupRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEES6_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26MangleLocalTypeDeclRequestEvEES6_ Unexecuted instantiation: ParseSIL.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEES6_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28PreCheckResultBuilderRequestEvEES6_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31ExpandMacroExpansionExprRequestEvEES6_ CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32CompareDeclSpecializationRequestEvEES6_ Line | Count | Source | 110 | 383k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 383k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 20.5k | return lhs.Req == rhs.Req; | 113 | 362k | } else { | 114 | 362k | return lhs.Kind == rhs.Kind; | 115 | 362k | } | 116 | 383k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29EnumElementExprPatternRequestEvEES6_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34HasDynamicCallableAttributeRequestEvEES6_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEES6_ CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25IsDeclRefinementOfRequestEvEES6_ Line | Count | Source | 110 | 54.2k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 54.2k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2.30k | return lhs.Req == rhs.Req; | 113 | 51.9k | } else { | 114 | 51.9k | return lhs.Kind == rhs.Kind; | 115 | 51.9k | } | 116 | 54.2k | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18CxxRecordSemanticsEvEES6_ CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEES6_ Line | Count | Source | 110 | 35.1k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 35.1k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1.32k | return lhs.Req == rhs.Req; | 113 | 33.8k | } else { | 114 | 33.8k | return lhs.Kind == rhs.Kind; | 115 | 33.8k | } | 116 | 35.1k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEES6_ Line | Count | Source | 110 | 15.2k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 15.2k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 393 | return lhs.Req == rhs.Req; | 113 | 14.8k | } else { | 114 | 14.8k | return lhs.Kind == rhs.Kind; | 115 | 14.8k | } | 116 | 15.2k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ClosureEffectsRequestEvEES6_ ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31ClosureHasExplicitResultRequestEvEES6_ Line | Count | Source | 110 | 13.1k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 13.1k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 356 | return lhs.Req == rhs.Req; | 113 | 12.7k | } else { | 114 | 12.7k | return lhs.Kind == rhs.Kind; | 115 | 12.7k | } | 116 | 13.1k | } |
DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28TangentStoredPropertyRequestEvEES6_ Line | Count | Source | 110 | 6.62k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 6.62k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 168 | return lhs.Req == rhs.Req; | 113 | 6.45k | } else { | 114 | 6.45k | return lhs.Kind == rhs.Kind; | 115 | 6.45k | } | 116 | 6.62k | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23IsDeclApplicableRequestEvEES6_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEES6_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvEES6_ Unexecuted instantiation: MiscDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEES6_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25PreCheckReturnStmtRequestEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29SynthesizeMainFunctionRequestEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28IsCCompatibleFuncDeclRequestEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ResolveMacroConformancesEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31InferredGenericSignatureRequestEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27GlobalActorAttributeRequestEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEES6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEES6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEES6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27GlobalActorAttributeRequestEvEES6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEES6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22HasIsolatedSelfRequestEvEES6_ TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_35DistributedModuleIsAvailableRequestEvEES6_ Line | Count | Source | 110 | 308 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 308 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 308 | } else { | 114 | 308 | return lhs.Kind == rhs.Kind; | 115 | 308 | } | 116 | 308 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31CheckDistributedFunctionRequestEvEES6_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30ValidatePrecedenceGroupRequestEvEES6_ Line | Count | Source | 110 | 88.9k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 88.9k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 5.12k | return lhs.Req == rhs.Req; | 113 | 83.7k | } else { | 114 | 83.7k | return lhs.Kind == rhs.Kind; | 115 | 83.7k | } | 116 | 88.9k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEES6_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29SynthesizeMainFunctionRequestEvEES6_ Line | Count | Source | 110 | 182k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 182k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 11.0k | return lhs.Req == rhs.Req; | 113 | 171k | } else { | 114 | 171k | return lhs.Kind == rhs.Kind; | 115 | 171k | } | 116 | 182k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEES6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26HasCircularRawValueRequestEvEES6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22OverriddenDeclsRequestEvEES6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30IsABICompatibleOverrideRequestEvEES6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ResolveImplicitMemberRequestEvEES6_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34TypeCheckObjCImplementationRequestEvEES6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20InheritedTypeRequestEvEES6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30ExternalMacroDefinitionRequestEvEES6_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25CheckRedeclarationRequestEvEES6_ Line | Count | Source | 110 | 66.5k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 66.5k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 4.11k | return lhs.Req == rhs.Req; | 113 | 62.4k | } else { | 114 | 62.4k | return lhs.Kind == rhs.Kind; | 115 | 62.4k | } | 116 | 66.5k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ExpandExtensionMacrosEvEES6_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22ApplyAccessNoteRequestEvEES6_ Line | Count | Source | 110 | 4.39M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 4.39M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 277k | return lhs.Req == rhs.Req; | 113 | 4.11M | } else { | 114 | 4.11M | return lhs.Kind == rhs.Kind; | 115 | 4.11M | } | 116 | 4.39M | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ResolveMacroRequestEvEES6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ResolveImplicitMemberRequestEvEES6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27DirectOperatorLookupRequestEvEES6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEES6_ TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18DefaultTypeRequestEvEES6_ Line | Count | Source | 110 | 159k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 159k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 3 | return lhs.Req == rhs.Req; | 113 | 159k | } else { | 114 | 159k | return lhs.Kind == rhs.Kind; | 115 | 159k | } | 116 | 159k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31InferredGenericSignatureRequestEvEES6_ Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31HasNoncopyableAnnotationRequestEvEES6_ TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30ExternalMacroDefinitionRequestEvEES6_ Line | Count | Source | 110 | 336 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 336 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 336 | } else { | 114 | 336 | return lhs.Kind == rhs.Kind; | 115 | 336 | } | 116 | 336 | } |
TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25CompilerPluginLoadRequestEvEES6_ Line | Count | Source | 110 | 280 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 280 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 280 | } else { | 114 | 280 | return lhs.Kind == rhs.Kind; | 115 | 280 | } | 116 | 280 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEES6_ Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEES6_ TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18PatternTypeRequestEvEES6_ Line | Count | Source | 110 | 544k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 544k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 34.0k | return lhs.Req == rhs.Req; | 113 | 510k | } else { | 114 | 510k | return lhs.Kind == rhs.Kind; | 115 | 510k | } | 116 | 544k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEES6_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31AttachedPropertyWrappersRequestEvEES6_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEES6_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEES6_ TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20InheritedTypeRequestEvEES6_ Line | Count | Source | 110 | 9.18k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 9.18k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 386 | return lhs.Req == rhs.Req; | 113 | 8.80k | } else { | 114 | 8.80k | return lhs.Kind == rhs.Kind; | 115 | 8.80k | } | 116 | 9.18k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEES6_ Line | Count | Source | 110 | 17.7k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 17.7k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 890 | return lhs.Req == rhs.Req; | 113 | 16.9k | } else { | 114 | 16.9k | return lhs.Kind == rhs.Kind; | 115 | 16.9k | } | 116 | 17.7k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEES6_ Line | Count | Source | 110 | 342 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 342 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 342 | } else { | 114 | 342 | return lhs.Kind == rhs.Kind; | 115 | 342 | } | 116 | 342 | } |
TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25PreCheckReturnStmtRequestEvEES6_ Line | Count | Source | 110 | 482k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 482k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 34.0k | return lhs.Req == rhs.Req; | 113 | 448k | } else { | 114 | 448k | return lhs.Kind == rhs.Kind; | 115 | 448k | } | 116 | 482k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEES6_ Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27PreCheckFunctionBodyRequestEvEES6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEES6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22ExpandPeerMacroRequestEvEES6_ TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32PropertyWrapperLValuenessRequestEvEES6_ Line | Count | Source | 110 | 1.18k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.18k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 6 | return lhs.Req == rhs.Req; | 113 | 1.18k | } else { | 114 | 1.18k | return lhs.Kind == rhs.Kind; | 115 | 1.18k | } | 116 | 1.18k | } |
TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20ExpandAccessorMacrosEvEES6_ Line | Count | Source | 110 | 680k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 680k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 46.6k | return lhs.Req == rhs.Req; | 113 | 634k | } else { | 114 | 634k | return lhs.Kind == rhs.Kind; | 115 | 634k | } | 116 | 680k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEES6_ Unexecuted instantiation: TypeCheckType.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18ResolveTypeRequestEvEES6_ TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26TypeCheckSourceFileRequestEvEES6_ Line | Count | Source | 110 | 4.41k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 4.41k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 4.41k | } else { | 114 | 4.41k | return lhs.Kind == rhs.Kind; | 115 | 4.41k | } | 116 | 4.41k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEES6_ Line | Count | Source | 110 | 17.7k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 17.7k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 17.7k | } else { | 114 | 17.7k | return lhs.Kind == rhs.Kind; | 115 | 17.7k | } | 116 | 17.7k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEES6_ Line | Count | Source | 110 | 25.7k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 25.7k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 464 | return lhs.Req == rhs.Req; | 113 | 25.2k | } else { | 114 | 25.2k | return lhs.Kind == rhs.Kind; | 115 | 25.2k | } | 116 | 25.7k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEES6_ Line | Count | Source | 110 | 25.4k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 25.4k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 400 | return lhs.Req == rhs.Req; | 113 | 25.0k | } else { | 114 | 25.0k | return lhs.Kind == rhs.Kind; | 115 | 25.0k | } | 116 | 25.4k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEES6_ Line | Count | Source | 110 | 17.7k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 17.7k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 17.7k | } else { | 114 | 17.7k | return lhs.Kind == rhs.Kind; | 115 | 17.7k | } | 116 | 17.7k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31InferredGenericSignatureRequestEvEES6_ Line | Count | Source | 110 | 189k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 189k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 11.4k | return lhs.Req == rhs.Req; | 113 | 178k | } else { | 114 | 178k | return lhs.Kind == rhs.Kind; | 115 | 178k | } | 116 | 189k | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28TypeCheckASTNodeAtLocRequestEvEES6_ Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEES6_ Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23ClangRecordMemberLookupEvEES6_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17HasStorageRequestEvEES6_ Line | Count | Source | 110 | 2.09M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.09M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 178k | return lhs.Req == rhs.Req; | 113 | 1.91M | } else { | 114 | 1.91M | return lhs.Kind == rhs.Kind; | 115 | 1.91M | } | 116 | 2.09M | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEES6_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ClangDirectLookupRequestEvEES6_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23ClangRecordMemberLookupEvEES6_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26ClangCategoryLookupRequestEvEES6_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_15InitKindRequestEvEES6_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17HasStorageRequestEvEES6_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEES6_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18CxxRecordSemanticsEvEES6_ Unexecuted instantiation: ImportName.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18IsSafeUseOfCxxDeclEvEES6_ Unexecuted instantiation: ImportType.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20CxxRecordAsSwiftTypeEvEES6_ Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ParseMembersRequestEvEES6_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30IDEInspectionSecondPassRequestEvEES6_ Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEES6_ Line | Count | Source | 110 | 48.3k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 48.3k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 48.3k | } else { | 114 | 48.3k | return lhs.Kind == rhs.Kind; | 115 | 48.3k | } | 116 | 48.3k | } |
Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22ParseSourceFileRequestEvEES6_ Unexecuted instantiation: AccessRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31TypeDeclsFromWhereClauseRequestEvEES6_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEES6_ Line | Count | Source | 110 | 2.07M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.07M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 173k | return lhs.Req == rhs.Req; | 113 | 1.89M | } else { | 114 | 1.89M | return lhs.Kind == rhs.Kind; | 115 | 1.89M | } | 116 | 2.07M | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEES6_ Line | Count | Source | 110 | 280 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 280 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 280 | } else { | 114 | 280 | return lhs.Kind == rhs.Kind; | 115 | 280 | } | 116 | 280 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEES6_ Line | Count | Source | 110 | 280 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 280 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 280 | } else { | 114 | 280 | return lhs.Kind == rhs.Kind; | 115 | 280 | } | 116 | 280 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEES6_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEES6_ Line | Count | Source | 110 | 280 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 280 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 280 | } else { | 114 | 280 | return lhs.Kind == rhs.Kind; | 115 | 280 | } | 116 | 280 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEES6_ Line | Count | Source | 110 | 280 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 280 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 280 | } else { | 114 | 280 | return lhs.Kind == rhs.Kind; | 115 | 280 | } | 116 | 280 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22HasIsolatedSelfRequestEvEES6_ Unexecuted instantiation: ASTPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ClangDirectLookupRequestEvEES6_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ResolveMacroConformancesEvEES6_ Line | Count | Source | 110 | 420 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 420 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 420 | } else { | 114 | 420 | return lhs.Kind == rhs.Kind; | 115 | 420 | } | 116 | 420 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30TypeEraserHasViableInitRequestEvEES6_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ResolveTypeEraserTypeRequestEvEES6_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEES6_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEES6_ Line | Count | Source | 110 | 11.2k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 11.2k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 135 | return lhs.Req == rhs.Req; | 113 | 11.1k | } else { | 114 | 11.1k | return lhs.Kind == rhs.Kind; | 115 | 11.1k | } | 116 | 11.2k | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEES6_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEES6_ Line | Count | Source | 110 | 8.19k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 8.19k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 106 | return lhs.Req == rhs.Req; | 113 | 8.08k | } else { | 114 | 8.08k | return lhs.Kind == rhs.Kind; | 115 | 8.08k | } | 116 | 8.19k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEES6_ Line | Count | Source | 110 | 21.0k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 21.0k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1.11k | return lhs.Req == rhs.Req; | 113 | 19.9k | } else { | 114 | 19.9k | return lhs.Kind == rhs.Kind; | 115 | 19.9k | } | 116 | 21.0k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29ImplementsAttrProtocolRequestEvEES6_ Line | Count | Source | 110 | 7.54k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 7.54k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 85 | return lhs.Req == rhs.Req; | 113 | 7.45k | } else { | 114 | 7.45k | return lhs.Kind == rhs.Kind; | 115 | 7.45k | } | 116 | 7.54k | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEES6_ Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEES6_ Line | Count | Source | 110 | 12.4k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 12.4k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 720 | return lhs.Req == rhs.Req; | 113 | 11.7k | } else { | 114 | 11.7k | return lhs.Kind == rhs.Kind; | 115 | 11.7k | } | 116 | 12.4k | } |
Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30SemanticUnavailableAttrRequestEvEES6_ Line | Count | Source | 110 | 2.12M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.12M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 128k | return lhs.Req == rhs.Req; | 113 | 2.00M | } else { | 114 | 2.00M | return lhs.Kind == rhs.Kind; | 115 | 2.00M | } | 116 | 2.12M | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ParseMembersRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27ExpandMemberAttributeMacrosEvEES6_ Line | Count | Source | 110 | 15.9M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 15.9M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1.05M | return lhs.Req == rhs.Req; | 113 | 14.9M | } else { | 114 | 14.9M | return lhs.Kind == rhs.Kind; | 115 | 14.9M | } | 116 | 15.9M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22ExpandPeerMacroRequestEvEES6_ Line | Count | Source | 110 | 5.94M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 5.94M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 401k | return lhs.Req == rhs.Req; | 113 | 5.54M | } else { | 114 | 5.54M | return lhs.Kind == rhs.Kind; | 115 | 5.54M | } | 116 | 5.94M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ResolveMacroRequestEvEES6_ Line | Count | Source | 110 | 5.17k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 5.17k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 224 | return lhs.Req == rhs.Req; | 113 | 4.94k | } else { | 114 | 4.94k | return lhs.Kind == rhs.Kind; | 115 | 4.94k | } | 116 | 5.17k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27GlobalActorAttributeRequestEvEES6_ Line | Count | Source | 110 | 10.4M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 10.4M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 307k | return lhs.Req == rhs.Req; | 113 | 10.1M | } else { | 114 | 10.1M | return lhs.Kind == rhs.Kind; | 115 | 10.1M | } | 116 | 10.4M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17ThrownTypeRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28IsAccessorTransparentRequestEvEES6_ Line | Count | Source | 110 | 600 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 600 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 9 | return lhs.Req == rhs.Req; | 113 | 591 | } else { | 114 | 591 | return lhs.Kind == rhs.Kind; | 115 | 591 | } | 116 | 600 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23GenericParamListRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23GenericSignatureRequestEvEES6_ Line | Count | Source | 110 | 1.68M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.68M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 687 | return lhs.Req == rhs.Req; | 113 | 1.68M | } else { | 114 | 1.68M | return lhs.Kind == rhs.Kind; | 115 | 1.68M | } | 116 | 1.68M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25ScopedImportLookupRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20InheritedTypeRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22ExtendedNominalRequestEvEES6_ Line | Count | Source | 110 | 2.14k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.14k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 7 | return lhs.Req == rhs.Req; | 113 | 2.13k | } else { | 114 | 2.13k | return lhs.Kind == rhs.Kind; | 115 | 2.13k | } | 116 | 2.14k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEES6_ Line | Count | Source | 110 | 145 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 145 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 145 | } else { | 114 | 145 | return lhs.Kind == rhs.Kind; | 115 | 145 | } | 116 | 145 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEES6_ Line | Count | Source | 110 | 59.4k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 59.4k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 6 | return lhs.Req == rhs.Req; | 113 | 59.4k | } else { | 114 | 59.4k | return lhs.Kind == rhs.Kind; | 115 | 59.4k | } | 116 | 59.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26PatternBindingEntryRequestEvEES6_ Line | Count | Source | 110 | 9.73k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 9.73k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 486 | return lhs.Req == rhs.Req; | 113 | 9.24k | } else { | 114 | 9.24k | return lhs.Kind == rhs.Kind; | 115 | 9.24k | } | 116 | 9.73k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEES6_ Line | Count | Source | 110 | 1.49k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.49k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 1.49k | } else { | 114 | 1.49k | return lhs.Kind == rhs.Kind; | 115 | 1.49k | } | 116 | 1.49k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEES6_ Line | Count | Source | 110 | 2.43k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.43k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 65 | return lhs.Req == rhs.Req; | 113 | 2.37k | } else { | 114 | 2.37k | return lhs.Kind == rhs.Kind; | 115 | 2.37k | } | 116 | 2.43k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25SynthesizeAccessorRequestEvEES6_ Line | Count | Source | 110 | 8.25k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 8.25k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 484 | return lhs.Req == rhs.Req; | 113 | 7.76k | } else { | 114 | 7.76k | return lhs.Kind == rhs.Kind; | 115 | 7.76k | } | 116 | 8.25k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30IsABICompatibleOverrideRequestEvEES6_ Line | Count | Source | 110 | 173k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 173k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 11.0k | return lhs.Req == rhs.Req; | 113 | 162k | } else { | 114 | 162k | return lhs.Kind == rhs.Kind; | 115 | 162k | } | 116 | 173k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23IsGetterMutatingRequestEvEES6_ Line | Count | Source | 110 | 2.74k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.74k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 3 | return lhs.Req == rhs.Req; | 113 | 2.73k | } else { | 114 | 2.73k | return lhs.Kind == rhs.Kind; | 115 | 2.73k | } | 116 | 2.74k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23IsSetterMutatingRequestEvEES6_ Line | Count | Source | 110 | 2.83k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.83k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 9 | return lhs.Req == rhs.Req; | 113 | 2.82k | } else { | 114 | 2.82k | return lhs.Kind == rhs.Kind; | 115 | 2.82k | } | 116 | 2.83k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26OpaqueReadOwnershipRequestEvEES6_ Line | Count | Source | 110 | 10.3k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 10.3k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 283 | return lhs.Req == rhs.Req; | 113 | 10.0k | } else { | 114 | 10.0k | return lhs.Kind == rhs.Kind; | 115 | 10.0k | } | 116 | 10.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEES6_ Line | Count | Source | 110 | 327k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 327k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 26.5k | return lhs.Req == rhs.Req; | 113 | 300k | } else { | 114 | 300k | return lhs.Kind == rhs.Kind; | 115 | 300k | } | 116 | 327k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22OverriddenDeclsRequestEvEES6_ Line | Count | Source | 110 | 116k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 116k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 15 | return lhs.Req == rhs.Req; | 113 | 116k | } else { | 114 | 116k | return lhs.Kind == rhs.Kind; | 115 | 116k | } | 116 | 116k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23OpaqueResultTypeRequestEvEES6_ Line | Count | Source | 110 | 280 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 280 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 280 | } else { | 114 | 280 | return lhs.Kind == rhs.Kind; | 115 | 280 | } | 116 | 280 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_13IsObjCRequestEvEES6_ Line | Count | Source | 110 | 320k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 320k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 919 | return lhs.Req == rhs.Req; | 113 | 319k | } else { | 114 | 319k | return lhs.Kind == rhs.Kind; | 115 | 319k | } | 116 | 320k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_14IsFinalRequestEvEES6_ Line | Count | Source | 110 | 673 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 673 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 673 | } else { | 114 | 673 | return lhs.Kind == rhs.Kind; | 115 | 673 | } | 116 | 673 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18IsEscapableRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_16IsDynamicRequestEvEES6_ Line | Count | Source | 110 | 18.4k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 18.4k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 638 | return lhs.Req == rhs.Req; | 113 | 17.8k | } else { | 114 | 17.8k | return lhs.Kind == rhs.Kind; | 115 | 17.8k | } | 116 | 18.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30DynamicallyReplacedDeclRequestEvEES6_ Line | Count | Source | 110 | 3.61M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 3.61M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 246k | return lhs.Req == rhs.Req; | 113 | 3.36M | } else { | 114 | 3.36M | return lhs.Kind == rhs.Kind; | 115 | 3.36M | } | 116 | 3.61M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20InterfaceTypeRequestEvEES6_ Line | Count | Source | 110 | 19.0M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 19.0M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 5.95k | return lhs.Req == rhs.Req; | 113 | 19.0M | } else { | 114 | 19.0M | return lhs.Kind == rhs.Kind; | 115 | 19.0M | } | 116 | 19.0M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18AccessLevelRequestEvEES6_ Line | Count | Source | 110 | 106k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 106k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 106k | } else { | 114 | 106k | return lhs.Kind == rhs.Kind; | 115 | 106k | } | 116 | 106k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31HasNoncopyableAnnotationRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23StoredPropertiesRequestEvEES6_ Line | Count | Source | 110 | 3.54M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 3.54M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 8.24k | return lhs.Req == rhs.Req; | 113 | 3.53M | } else { | 114 | 3.53M | return lhs.Kind == rhs.Kind; | 115 | 3.53M | } | 116 | 3.54M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29InitAccessorPropertiesRequestEvEES6_ Line | Count | Source | 110 | 24.6k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 24.6k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 773 | return lhs.Req == rhs.Req; | 113 | 23.8k | } else { | 114 | 23.8k | return lhs.Kind == rhs.Kind; | 115 | 23.8k | } | 116 | 24.6k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31MemberwiseInitPropertiesRequestEvEES6_ Line | Count | Source | 110 | 23.0k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 23.0k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 656 | return lhs.Req == rhs.Req; | 113 | 22.3k | } else { | 114 | 22.3k | return lhs.Kind == rhs.Kind; | 115 | 22.3k | } | 116 | 23.0k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEES6_ Line | Count | Source | 110 | 19.4k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 19.4k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 596 | return lhs.Req == rhs.Req; | 113 | 18.8k | } else { | 114 | 18.8k | return lhs.Kind == rhs.Kind; | 115 | 18.8k | } | 116 | 19.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEES6_ Line | Count | Source | 110 | 1.50k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.50k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2 | return lhs.Req == rhs.Req; | 113 | 1.50k | } else { | 114 | 1.50k | return lhs.Kind == rhs.Kind; | 115 | 1.50k | } | 116 | 1.50k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_14IsActorRequestEvEES6_ Line | Count | Source | 110 | 2.15M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.15M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 25.7k | return lhs.Req == rhs.Req; | 113 | 2.13M | } else { | 114 | 2.13M | return lhs.Kind == rhs.Kind; | 115 | 2.13M | } | 116 | 2.15M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25IsDistributedActorRequestEvEES6_ Line | Count | Source | 110 | 1.02M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.02M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 32.5k | return lhs.Req == rhs.Req; | 113 | 992k | } else { | 114 | 992k | return lhs.Kind == rhs.Kind; | 115 | 992k | } | 116 | 1.02M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21UnderlyingTypeRequestEvEES6_ Line | Count | Source | 110 | 3.48k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 3.48k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 3.48k | } else { | 114 | 3.48k | return lhs.Kind == rhs.Kind; | 115 | 3.48k | } | 116 | 3.48k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21StructuralTypeRequestEvEES6_ Line | Count | Source | 110 | 570k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 570k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 44.5k | return lhs.Req == rhs.Req; | 113 | 525k | } else { | 114 | 525k | return lhs.Kind == rhs.Kind; | 115 | 525k | } | 116 | 570k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28DefaultDefinitionTypeRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18EnumRawTypeRequestEvEES6_ Line | Count | Source | 110 | 128k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 128k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 7.41k | return lhs.Req == rhs.Req; | 113 | 121k | } else { | 114 | 121k | return lhs.Kind == rhs.Kind; | 115 | 121k | } | 116 | 128k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24HasMemberwiseInitRequestEvEES6_ Line | Count | Source | 110 | 28.2k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 28.2k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 890 | return lhs.Req == rhs.Req; | 113 | 27.4k | } else { | 114 | 27.4k | return lhs.Kind == rhs.Kind; | 115 | 27.4k | } | 116 | 28.2k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEES6_ Line | Count | Source | 110 | 13.3k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 13.3k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 297 | return lhs.Req == rhs.Req; | 113 | 13.0k | } else { | 114 | 13.0k | return lhs.Kind == rhs.Kind; | 115 | 13.0k | } | 116 | 13.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEES6_ Line | Count | Source | 110 | 10.7k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 10.7k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 179 | return lhs.Req == rhs.Req; | 113 | 10.5k | } else { | 114 | 10.5k | return lhs.Kind == rhs.Kind; | 115 | 10.5k | } | 116 | 10.7k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21HasDefaultInitRequestEvEES6_ Line | Count | Source | 110 | 32.3k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 32.3k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1.21k | return lhs.Req == rhs.Req; | 113 | 31.1k | } else { | 114 | 31.1k | return lhs.Kind == rhs.Kind; | 115 | 31.1k | } | 116 | 32.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28SynthesizeDefaultInitRequestEvEES6_ Line | Count | Source | 110 | 7.70k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 7.70k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 29 | return lhs.Req == rhs.Req; | 113 | 7.67k | } else { | 114 | 7.67k | return lhs.Kind == rhs.Kind; | 115 | 7.67k | } | 116 | 7.70k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26GlobalActorInstanceRequestEvEES6_ Line | Count | Source | 110 | 910 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 910 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 910 | } else { | 114 | 910 | return lhs.Kind == rhs.Kind; | 115 | 910 | } | 116 | 910 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20GetDestructorRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21IsDefaultActorRequestEvEES6_ Line | Count | Source | 110 | 6.08k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 6.08k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 78 | return lhs.Req == rhs.Req; | 113 | 6.01k | } else { | 114 | 6.01k | return lhs.Kind == rhs.Kind; | 115 | 6.01k | } | 116 | 6.08k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEES6_ Line | Count | Source | 110 | 140 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 140 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 140 | } else { | 114 | 140 | return lhs.Kind == rhs.Kind; | 115 | 140 | } | 116 | 140 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37InheritsSuperclassInitializersRequestEvEES6_ Line | Count | Source | 110 | 340 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 340 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 340 | } else { | 114 | 340 | return lhs.Kind == rhs.Kind; | 115 | 340 | } | 116 | 340 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25ClassAncestryFlagsRequestEvEES6_ Line | Count | Source | 110 | 24.7k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 24.7k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 402 | return lhs.Req == rhs.Req; | 113 | 24.3k | } else { | 114 | 24.3k | return lhs.Kind == rhs.Kind; | 115 | 24.3k | } | 116 | 24.7k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26HasCircularRawValueRequestEvEES6_ Line | Count | Source | 110 | 12.3k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 12.3k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 408 | return lhs.Req == rhs.Req; | 113 | 11.9k | } else { | 114 | 11.9k | return lhs.Kind == rhs.Kind; | 115 | 11.9k | } | 116 | 12.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25InheritedProtocolsRequestEvEES6_ Line | Count | Source | 110 | 1.58k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.58k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1 | return lhs.Req == rhs.Req; | 113 | 1.58k | } else { | 114 | 1.58k | return lhs.Kind == rhs.Kind; | 115 | 1.58k | } | 116 | 1.58k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27ProtocolRequirementsRequestEvEES6_ Line | Count | Source | 110 | 2.11k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.11k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1 | return lhs.Req == rhs.Req; | 113 | 2.11k | } else { | 114 | 2.11k | return lhs.Kind == rhs.Kind; | 115 | 2.11k | } | 116 | 2.11k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21SuperclassTypeRequestEvEES6_ Line | Count | Source | 110 | 1.70k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.70k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 25 | return lhs.Req == rhs.Req; | 113 | 1.68k | } else { | 114 | 1.68k | return lhs.Kind == rhs.Kind; | 115 | 1.68k | } | 116 | 1.70k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21SuperclassDeclRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ProtocolRequiresClassRequestEvEES6_ Line | Count | Source | 110 | 252 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 252 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 252 | } else { | 114 | 252 | return lhs.Kind == rhs.Kind; | 115 | 252 | } | 116 | 252 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32ExistentialConformsToSelfRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEES6_ Line | Count | Source | 110 | 70 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 70 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 70 | } else { | 114 | 70 | return lhs.Kind == rhs.Kind; | 115 | 70 | } | 116 | 70 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29PrimaryAssociatedTypesRequestEvEES6_ Line | Count | Source | 110 | 4.81k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 4.81k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 36 | return lhs.Req == rhs.Req; | 113 | 4.77k | } else { | 114 | 4.77k | return lhs.Kind == rhs.Kind; | 115 | 4.77k | } | 116 | 4.81k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29StructuralRequirementsRequestEvEES6_ Line | Count | Source | 110 | 9.62k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 9.62k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 77 | return lhs.Req == rhs.Req; | 113 | 9.54k | } else { | 114 | 9.54k | return lhs.Kind == rhs.Kind; | 115 | 9.54k | } | 116 | 9.62k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28TypeAliasRequirementsRequestEvEES6_ Line | Count | Source | 110 | 9.34k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 9.34k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 54 | return lhs.Req == rhs.Req; | 113 | 9.28k | } else { | 114 | 9.28k | return lhs.Kind == rhs.Kind; | 115 | 9.28k | } | 116 | 9.34k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27ProtocolDependenciesRequestEvEES6_ Line | Count | Source | 110 | 242k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 242k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 7.12k | return lhs.Req == rhs.Req; | 113 | 235k | } else { | 114 | 235k | return lhs.Kind == rhs.Kind; | 115 | 235k | } | 116 | 242k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27RequirementSignatureRequestEvEES6_ Line | Count | Source | 110 | 9.46k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 9.46k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1 | return lhs.Req == rhs.Req; | 113 | 9.46k | } else { | 114 | 9.46k | return lhs.Kind == rhs.Kind; | 115 | 9.46k | } | 116 | 9.46k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEES6_ Line | Count | Source | 110 | 8.98k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 8.98k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 69 | return lhs.Req == rhs.Req; | 113 | 8.91k | } else { | 114 | 8.91k | return lhs.Kind == rhs.Kind; | 115 | 8.91k | } | 116 | 8.98k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17HasStorageRequestEvEES6_ Line | Count | Source | 110 | 1.80M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.80M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 1.80M | } else { | 114 | 1.80M | return lhs.Kind == rhs.Kind; | 115 | 1.80M | } | 116 | 1.80M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22StorageImplInfoRequestEvEES6_ Line | Count | Source | 110 | 9.81k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 9.81k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 9.81k | } else { | 114 | 9.81k | return lhs.Kind == rhs.Kind; | 115 | 9.81k | } | 116 | 9.81k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24SetterAccessLevelRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22HasInitAccessorRequestEvEES6_ Line | Count | Source | 110 | 1.62M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.62M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 90.6k | return lhs.Req == rhs.Req; | 113 | 1.53M | } else { | 114 | 1.53M | return lhs.Kind == rhs.Kind; | 115 | 1.53M | } | 116 | 1.62M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27DefaultInitializerIsolationEvEES6_ Line | Count | Source | 110 | 6.21M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 6.21M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 509k | return lhs.Req == rhs.Req; | 113 | 5.70M | } else { | 114 | 5.70M | return lhs.Kind == rhs.Kind; | 115 | 5.70M | } | 116 | 6.21M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20NamingPatternRequestEvEES6_ Line | Count | Source | 110 | 5.18k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 5.18k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 208 | return lhs.Req == rhs.Req; | 113 | 4.98k | } else { | 114 | 4.98k | return lhs.Kind == rhs.Kind; | 115 | 4.98k | } | 116 | 5.18k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ParamSpecifierRequestEvEES6_ Line | Count | Source | 110 | 19.6k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 19.6k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 19.6k | } else { | 114 | 19.6k | return lhs.Kind == rhs.Kind; | 115 | 19.6k | } | 116 | 19.6k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31AttachedPropertyWrappersRequestEvEES6_ Line | Count | Source | 110 | 9.89M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 9.89M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 473k | return lhs.Req == rhs.Req; | 113 | 9.42M | } else { | 114 | 9.42M | return lhs.Kind == rhs.Kind; | 115 | 9.42M | } | 116 | 9.89M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEES6_ Line | Count | Source | 110 | 21.4k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 21.4k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 880 | return lhs.Req == rhs.Req; | 113 | 20.5k | } else { | 114 | 20.5k | return lhs.Kind == rhs.Kind; | 115 | 20.5k | } | 116 | 21.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEES6_ Line | Count | Source | 110 | 20.7k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 20.7k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 769 | return lhs.Req == rhs.Req; | 113 | 19.9k | } else { | 114 | 19.9k | return lhs.Kind == rhs.Kind; | 115 | 19.9k | } | 116 | 20.7k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEES6_ Line | Count | Source | 110 | 1.66M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.66M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 115k | return lhs.Req == rhs.Req; | 113 | 1.54M | } else { | 114 | 1.54M | return lhs.Kind == rhs.Kind; | 115 | 1.54M | } | 116 | 1.66M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEES6_ Line | Count | Source | 110 | 482k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 482k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 31.5k | return lhs.Req == rhs.Req; | 113 | 450k | } else { | 114 | 450k | return lhs.Kind == rhs.Kind; | 115 | 450k | } | 116 | 482k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32PropertyWrapperMutabilityRequestEvEES6_ Line | Count | Source | 110 | 636k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 636k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 40.0k | return lhs.Req == rhs.Req; | 113 | 596k | } else { | 114 | 596k | return lhs.Kind == rhs.Kind; | 115 | 596k | } | 116 | 636k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LazyStoragePropertyRequestEvEES6_ Line | Count | Source | 110 | 224 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 224 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 224 | } else { | 114 | 224 | return lhs.Kind == rhs.Kind; | 115 | 224 | } | 116 | 224 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_33DefaultArgumentInitContextRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26DefaultArgumentExprRequestEvEES6_ Line | Count | Source | 110 | 552 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 552 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 4 | return lhs.Req == rhs.Req; | 113 | 548 | } else { | 114 | 548 | return lhs.Kind == rhs.Kind; | 115 | 548 | } | 116 | 552 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26DefaultArgumentTypeRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ResultBuilderTypeRequestEvEES6_ Line | Count | Source | 110 | 457k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 457k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 27.3k | return lhs.Req == rhs.Req; | 113 | 429k | } else { | 114 | 429k | return lhs.Kind == rhs.Kind; | 115 | 429k | } | 116 | 457k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28AttachedResultBuilderRequestEvEES6_ Line | Count | Source | 110 | 1.79M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.79M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 123k | return lhs.Req == rhs.Req; | 113 | 1.66M | } else { | 114 | 1.66M | return lhs.Kind == rhs.Kind; | 115 | 1.66M | } | 116 | 1.79M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17ResultTypeRequestEvEES6_ Line | Count | Source | 110 | 383k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 383k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 620 | return lhs.Req == rhs.Req; | 113 | 382k | } else { | 114 | 382k | return lhs.Kind == rhs.Kind; | 115 | 382k | } | 116 | 383k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18RenamedDeclRequestEvEES6_ Line | Count | Source | 110 | 8.57k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 8.57k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 465 | return lhs.Req == rhs.Req; | 113 | 8.10k | } else { | 114 | 8.10k | return lhs.Kind == rhs.Kind; | 115 | 8.10k | } | 116 | 8.57k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEES6_ Line | Count | Source | 110 | 702k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 702k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1.55k | return lhs.Req == rhs.Req; | 113 | 701k | } else { | 114 | 701k | return lhs.Kind == rhs.Kind; | 115 | 701k | } | 116 | 702k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28TypeCheckFunctionBodyRequestEvEES6_ Line | Count | Source | 110 | 50.5k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 50.5k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2.78k | return lhs.Req == rhs.Req; | 113 | 47.7k | } else { | 114 | 47.7k | return lhs.Kind == rhs.Kind; | 115 | 47.7k | } | 116 | 50.5k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28IsFunctionBodySkippedRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26NeedsNewVTableEntryRequestEvEES6_ Line | Count | Source | 110 | 9.47k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 9.47k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 27 | return lhs.Req == rhs.Req; | 113 | 9.44k | } else { | 114 | 9.44k | return lhs.Kind == rhs.Kind; | 115 | 9.44k | } | 116 | 9.47k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23FunctionOperatorRequestEvEES6_ Line | Count | Source | 110 | 1.39M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.39M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 112k | return lhs.Req == rhs.Req; | 113 | 1.28M | } else { | 114 | 1.28M | return lhs.Kind == rhs.Kind; | 115 | 1.28M | } | 116 | 1.39M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_15IsStaticRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19SimpleDidSetRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21SelfAccessKindRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20EnumRawValuesRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_15InitKindRequestEvEES6_ Line | Count | Source | 110 | 771k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 771k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 56.1k | return lhs.Req == rhs.Req; | 113 | 715k | } else { | 114 | 715k | return lhs.Kind == rhs.Kind; | 115 | 715k | } | 116 | 771k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19BodyInitKindRequestEvEES6_ Line | Count | Source | 110 | 44.5k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 44.5k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2.33k | return lhs.Req == rhs.Req; | 113 | 42.2k | } else { | 114 | 42.2k | return lhs.Kind == rhs.Kind; | 115 | 42.2k | } | 116 | 44.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30OperatorPrecedenceGroupRequestEvEES6_ Line | Count | Source | 110 | 45.9k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 45.9k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1.15k | return lhs.Req == rhs.Req; | 113 | 44.8k | } else { | 114 | 44.8k | return lhs.Kind == rhs.Kind; | 115 | 44.8k | } | 116 | 45.9k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ActorIsolationRequestEvEES6_ Line | Count | Source | 110 | 5.33M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 5.33M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 218k | return lhs.Req == rhs.Req; | 113 | 5.11M | } else { | 114 | 5.11M | return lhs.Kind == rhs.Kind; | 115 | 5.11M | } | 116 | 5.33M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31ExpandMacroExpansionExprRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ResolveMacroConformancesEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22MacroDefinitionRequestEvEES6_ Line | Count | Source | 110 | 343 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 343 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1 | return lhs.Req == rhs.Req; | 113 | 342 | } else { | 114 | 342 | return lhs.Kind == rhs.Kind; | 115 | 342 | } | 116 | 343 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ResolveImplicitMemberRequestEvEES6_ DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26FragileFunctionKindRequestEvEES6_ Line | Count | Source | 110 | 2.22M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.22M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 125k | return lhs.Req == rhs.Req; | 113 | 2.09M | } else { | 114 | 2.09M | return lhs.Kind == rhs.Kind; | 115 | 2.09M | } | 116 | 2.22M | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ParseMembersRequestEvEES6_ Line | Count | Source | 110 | 447k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 447k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 15.1k | return lhs.Req == rhs.Req; | 113 | 432k | } else { | 114 | 432k | return lhs.Kind == rhs.Kind; | 115 | 432k | } | 116 | 447k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17ABIMembersRequestEvEES6_ Line | Count | Source | 110 | 197k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 197k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 12.2k | return lhs.Req == rhs.Req; | 113 | 185k | } else { | 114 | 185k | return lhs.Kind == rhs.Kind; | 115 | 185k | } | 116 | 197k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17AllMembersRequestEvEES6_ Line | Count | Source | 110 | 164k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 164k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 10.0k | return lhs.Req == rhs.Req; | 113 | 154k | } else { | 114 | 154k | return lhs.Kind == rhs.Kind; | 115 | 154k | } | 116 | 164k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEES6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEES6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEES6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEES6_ DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEES6_ Line | Count | Source | 110 | 308 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 308 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 308 | } else { | 114 | 308 | return lhs.Kind == rhs.Kind; | 115 | 308 | } | 116 | 308 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26GetDistributedThunkRequestEvEES6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEES6_ DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEES6_ Line | Count | Source | 110 | 280 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 280 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 280 | } else { | 114 | 280 | return lhs.Kind == rhs.Kind; | 115 | 280 | } | 116 | 280 | } |
DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27SemanticBriefCommentRequestEvEES6_ Line | Count | Source | 110 | 44.4k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 44.4k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 3.05k | return lhs.Req == rhs.Req; | 113 | 41.3k | } else { | 114 | 41.3k | return lhs.Kind == rhs.Kind; | 115 | 41.3k | } | 116 | 44.4k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEES6_ Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28PolymorphicEffectKindRequestEvEES6_ Line | Count | Source | 110 | 648k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 648k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 30.5k | return lhs.Req == rhs.Req; | 113 | 618k | } else { | 114 | 618k | return lhs.Kind == rhs.Kind; | 115 | 618k | } | 116 | 648k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27ConformanceHasEffectRequestEvEES6_ Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31CallerSideDefaultArgExprRequestEvEES6_ Line | Count | Source | 110 | 42.9k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 42.9k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 3.14k | return lhs.Req == rhs.Req; | 113 | 39.7k | } else { | 114 | 39.7k | return lhs.Kind == rhs.Kind; | 115 | 39.7k | } | 116 | 42.9k | } |
Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEES6_ Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ClosureEffectsRequestEvEES6_ Line | Count | Source | 110 | 775k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 775k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 3.16k | return lhs.Req == rhs.Req; | 113 | 772k | } else { | 114 | 772k | return lhs.Kind == rhs.Kind; | 115 | 772k | } | 116 | 775k | } |
GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31AbstractGenericSignatureRequestEvEES6_ Line | Count | Source | 110 | 85.3k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 85.3k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2.91k | return lhs.Req == rhs.Req; | 113 | 82.4k | } else { | 114 | 82.4k | return lhs.Kind == rhs.Kind; | 115 | 82.4k | } | 116 | 85.3k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22IsNonUserModuleRequestEvEES6_ Line | Count | Source | 110 | 770 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 770 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 770 | } else { | 114 | 770 | return lhs.Kind == rhs.Kind; | 115 | 770 | } | 116 | 770 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ModuleImplicitImportsRequestEvEES6_ Line | Count | Source | 110 | 18.7k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 18.7k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 18.7k | } else { | 114 | 18.7k | return lhs.Kind == rhs.Kind; | 115 | 18.7k | } | 116 | 18.7k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25PrimarySourceFilesRequestEvEES6_ Line | Count | Source | 110 | 14.7k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 14.7k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 14.7k | } else { | 114 | 14.7k | return lhs.Kind == rhs.Kind; | 115 | 14.7k | } | 116 | 14.7k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26MangleLocalTypeDeclRequestEvEES6_ Line | Count | Source | 110 | 262 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 262 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2 | return lhs.Req == rhs.Req; | 113 | 260 | } else { | 114 | 260 | return lhs.Kind == rhs.Kind; | 115 | 260 | } | 116 | 262 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ExpandExtensionMacrosEvEES6_ Line | Count | Source | 110 | 858k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 858k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 10.1k | return lhs.Req == rhs.Req; | 113 | 848k | } else { | 114 | 848k | return lhs.Kind == rhs.Kind; | 115 | 848k | } | 116 | 858k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_39ImplicitKnownProtocolConformanceRequestEvEES6_ Line | Count | Source | 110 | 92.0k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 92.0k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 3.96k | return lhs.Req == rhs.Req; | 113 | 88.1k | } else { | 114 | 88.1k | return lhs.Kind == rhs.Kind; | 115 | 88.1k | } | 116 | 92.0k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEES6_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22ParseSourceFileRequestEvEES6_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29HasImportsMatchingFlagRequestEvEES6_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_16SPIGroupsRequestEvEES6_ Line | Count | Source | 110 | 5.15M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 5.15M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 248k | return lhs.Req == rhs.Req; | 113 | 4.91M | } else { | 114 | 4.91M | return lhs.Kind == rhs.Kind; | 115 | 4.91M | } | 116 | 5.15M | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25ModuleLibraryLevelRequestEvEES6_ Line | Count | Source | 110 | 6.51k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 6.51k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 6 | return lhs.Req == rhs.Req; | 113 | 6.50k | } else { | 114 | 6.50k | return lhs.Kind == rhs.Kind; | 115 | 6.50k | } | 116 | 6.51k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25ParseTopLevelDeclsRequestEvEES6_ Line | Count | Source | 110 | 57.8k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 57.8k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 447 | return lhs.Req == rhs.Req; | 113 | 57.4k | } else { | 114 | 57.4k | return lhs.Kind == rhs.Kind; | 115 | 57.4k | } | 116 | 57.8k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25ExportedSourceFileRequestEvEES6_ Line | Count | Source | 110 | 21.3k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 21.3k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 238 | return lhs.Req == rhs.Req; | 113 | 21.1k | } else { | 114 | 21.1k | return lhs.Kind == rhs.Kind; | 115 | 21.1k | } | 116 | 21.3k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22GetSourceFileAsyncNodeEvEES6_ Line | Count | Source | 110 | 7.00k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 7.00k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 7.00k | } else { | 114 | 7.00k | return lhs.Kind == rhs.Kind; | 115 | 7.00k | } | 116 | 7.00k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32LookupConformanceInModuleRequestEvEES6_ Unexecuted instantiation: ModuleNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21LookupInModuleRequestEvEES6_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEES6_ Line | Count | Source | 110 | 197k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 197k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 12.3k | return lhs.Req == rhs.Req; | 113 | 185k | } else { | 114 | 185k | return lhs.Kind == rhs.Kind; | 115 | 185k | } | 116 | 197k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ExpandExtensionMacrosEvEES6_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEES6_ Line | Count | Source | 110 | 1.95M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.95M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 135k | return lhs.Req == rhs.Req; | 113 | 1.81M | } else { | 114 | 1.81M | return lhs.Kind == rhs.Kind; | 115 | 1.81M | } | 116 | 1.95M | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21SuperclassDeclRequestEvEES6_ Line | Count | Source | 110 | 48.6k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 48.6k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 41 | return lhs.Req == rhs.Req; | 113 | 48.5k | } else { | 114 | 48.5k | return lhs.Kind == rhs.Kind; | 115 | 48.5k | } | 116 | 48.6k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30IsCallAsFunctionNominalRequestEvEES6_ Line | Count | Source | 110 | 2.11k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.11k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 11 | return lhs.Req == rhs.Req; | 113 | 2.10k | } else { | 114 | 2.10k | return lhs.Kind == rhs.Kind; | 115 | 2.10k | } | 116 | 2.11k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEES6_ Line | Count | Source | 110 | 159k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 159k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 4.77k | return lhs.Req == rhs.Req; | 113 | 154k | } else { | 114 | 154k | return lhs.Kind == rhs.Kind; | 115 | 154k | } | 116 | 159k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34HasDynamicCallableAttributeRequestEvEES6_ Line | Count | Source | 110 | 1.99k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.99k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 27 | return lhs.Req == rhs.Req; | 113 | 1.97k | } else { | 114 | 1.97k | return lhs.Kind == rhs.Kind; | 115 | 1.97k | } | 116 | 1.99k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32SelfBoundsFromWhereClauseRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37SelfBoundsFromGenericSignatureRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19DirectLookupRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24CXXNamespaceMemberLookupEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23ClangRecordMemberLookupEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22AnyObjectLookupRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22QualifiedLookupRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ModuleQualifiedLookupRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36UnderlyingTypeDeclsReferencedRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31InheritedDeclsReferencedRequestEvEES6_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LookupInfixOperatorRequestEvEES6_ Line | Count | Source | 110 | 49.8k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 49.8k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1.38k | return lhs.Req == rhs.Req; | 113 | 48.4k | } else { | 114 | 48.4k | return lhs.Kind == rhs.Kind; | 115 | 48.4k | } | 116 | 49.8k | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27LookupPrefixOperatorRequestEvEES6_ Line | Count | Source | 110 | 434 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 434 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 434 | } else { | 114 | 434 | return lhs.Kind == rhs.Kind; | 115 | 434 | } | 116 | 434 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28LookupPostfixOperatorRequestEvEES6_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28LookupPrecedenceGroupRequestEvEES6_ Line | Count | Source | 110 | 17.3k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 17.3k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 251 | return lhs.Req == rhs.Req; | 113 | 17.1k | } else { | 114 | 17.1k | return lhs.Kind == rhs.Kind; | 115 | 17.1k | } | 116 | 17.3k | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27DirectOperatorLookupRequestEvEES6_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEES6_ Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23ExprPatternMatchRequestEvEES6_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30ConditionalRequirementsRequestEvEES6_ Line | Count | Source | 110 | 760k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 760k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 27.1k | return lhs.Req == rhs.Req; | 113 | 733k | } else { | 114 | 733k | return lhs.Kind == rhs.Kind; | 115 | 733k | } | 116 | 760k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18TypeWitnessRequestEvEES6_ Line | Count | Source | 110 | 1.71k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.71k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1 | return lhs.Req == rhs.Req; | 113 | 1.71k | } else { | 114 | 1.71k | return lhs.Kind == rhs.Kind; | 115 | 1.71k | } | 116 | 1.71k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28AssociatedConformanceRequestEvEES6_ Line | Count | Source | 110 | 10.3k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 10.3k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 561 | return lhs.Req == rhs.Req; | 113 | 9.76k | } else { | 114 | 9.76k | return lhs.Kind == rhs.Kind; | 115 | 9.76k | } | 116 | 10.3k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ValueWitnessRequestEvEES6_ Line | Count | Source | 110 | 1.03k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.03k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 1.03k | } else { | 114 | 1.03k | return lhs.Kind == rhs.Kind; | 115 | 1.03k | } | 116 | 1.03k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37LookupAllConformancesInContextRequestEvEES6_ Line | Count | Source | 110 | 393k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 393k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 17.9k | return lhs.Req == rhs.Req; | 113 | 375k | } else { | 114 | 375k | return lhs.Kind == rhs.Kind; | 115 | 375k | } | 116 | 393k | } |
RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17RawCommentRequestEvEES6_ Line | Count | Source | 110 | 214k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 214k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 14.2k | return lhs.Req == rhs.Req; | 113 | 199k | } else { | 114 | 199k | return lhs.Kind == rhs.Kind; | 115 | 199k | } | 116 | 214k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31AbstractGenericSignatureRequestEvEES6_ Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24IsSingleValueStmtRequestEvEES6_ Line | Count | Source | 110 | 297k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 297k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 19.6k | return lhs.Req == rhs.Req; | 113 | 278k | } else { | 114 | 278k | return lhs.Kind == rhs.Kind; | 115 | 278k | } | 116 | 297k | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18BreakTargetRequestEvEES6_ Line | Count | Source | 110 | 2.95k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.95k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 70 | return lhs.Req == rhs.Req; | 113 | 2.88k | } else { | 114 | 2.88k | return lhs.Kind == rhs.Kind; | 115 | 2.88k | } | 116 | 2.95k | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ContinueTargetRequestEvEES6_ Line | Count | Source | 110 | 1.41k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.41k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 9 | return lhs.Req == rhs.Req; | 113 | 1.40k | } else { | 114 | 1.40k | return lhs.Kind == rhs.Kind; | 115 | 1.40k | } | 116 | 1.41k | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20IsNoncopyableRequestEvEES6_ TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18RequirementRequestEvEES6_ Line | Count | Source | 110 | 223k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 223k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 12.2k | return lhs.Req == rhs.Req; | 113 | 211k | } else { | 114 | 211k | return lhs.Kind == rhs.Kind; | 115 | 211k | } | 116 | 223k | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEES6_ Line | Count | Source | 110 | 1.15M | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.15M | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 47.4k | return lhs.Req == rhs.Req; | 113 | 1.11M | } else { | 114 | 1.11M | return lhs.Kind == rhs.Kind; | 115 | 1.11M | } | 116 | 1.15M | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20USRGenerationRequestEvEES6_ |
117 | | friend bool operator!=(const RequestKey &lhs, const RequestKey &rhs) { |
118 | | return !(lhs == rhs); |
119 | | } |
120 | 7.38M | friend llvm::hash_code hash_value(const RequestKey &key) { |
121 | 7.38M | if (key.Kind != StorageKind::Normal) |
122 | 0 | return 1; |
123 | 7.38M | return hash_value(key.Req); |
124 | 7.38M | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18OptimizedIRRequestEvEE Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22SymbolSourceMapRequestEvEE ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20USRGenerationRequestEvEE Line | Count | Source | 120 | 20.1k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 20.1k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 20.1k | return hash_value(key.Req); | 124 | 20.1k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18RenamedDeclRequestEvEE Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24IDEInspectionFileRequestEvEE Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEE Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ConstantValueInfoRequestEvEE Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22SymbolSourceMapRequestEvEE IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_12IRGenRequestEvEE Line | Count | Source | 120 | 49 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 49 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 49 | return hash_value(key.Req); | 124 | 49 | } |
Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17LoweredSILRequestEvEE Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20PublicSymbolsRequestEvEE Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18GenerateTBDRequestEvEE Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_13APIGenRequestEvEE SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18ASTLoweringRequestEvEE Line | Count | Source | 120 | 78 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 78 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 78 | return hash_value(key.Req); | 124 | 78 | } |
Unexecuted instantiation: SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ParseSILModuleRequestEvEE Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28TangentStoredPropertyRequestEvEE Line | Count | Source | 120 | 88 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 88 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 88 | return hash_value(key.Req); | 124 | 88 | } |
Unexecuted instantiation: PassManager.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25ExecuteSILPipelineRequestEvEE Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18ASTLoweringRequestEvEE Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ProvideDefaultImplForRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26ResolveProtocolNameRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ProvideDefaultImplForRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29CollectOverriddenDeclsRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23IsDeclApplicableRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24TypeRelationCheckRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_15InitKindRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23OpaqueResultTypeRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LazyStoragePropertyRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27DefaultInitializerIsolationEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23FunctionOperatorRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30OperatorPrecedenceGroupRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22MacroDefinitionRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17HasStorageRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27DirectOperatorLookupRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEE Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26MangleLocalTypeDeclRequestEvEE Unexecuted instantiation: ParseSIL.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEE Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28PreCheckResultBuilderRequestEvEE Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31ExpandMacroExpansionExprRequestEvEE CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32CompareDeclSpecializationRequestEvEE Line | Count | Source | 120 | 27.6k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 27.6k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 27.6k | return hash_value(key.Req); | 124 | 27.6k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29EnumElementExprPatternRequestEvEE Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34HasDynamicCallableAttributeRequestEvEE Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEE CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25IsDeclRefinementOfRequestEvEE Line | Count | Source | 120 | 4.15k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4.15k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4.15k | return hash_value(key.Req); | 124 | 4.15k | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18CxxRecordSemanticsEvEE CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEE Line | Count | Source | 120 | 2.44k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2.44k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2.44k | return hash_value(key.Req); | 124 | 2.44k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEE Line | Count | Source | 120 | 949 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 949 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 949 | return hash_value(key.Req); | 124 | 949 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ClosureEffectsRequestEvEE ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31ClosureHasExplicitResultRequestEvEE Line | Count | Source | 120 | 926 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 926 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 926 | return hash_value(key.Req); | 124 | 926 | } |
DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28TangentStoredPropertyRequestEvEE Line | Count | Source | 120 | 505 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 505 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 505 | return hash_value(key.Req); | 124 | 505 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23IsDeclApplicableRequestEvEE Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEE Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvEE Unexecuted instantiation: MiscDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEE Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25PreCheckReturnStmtRequestEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29SynthesizeMainFunctionRequestEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28IsCCompatibleFuncDeclRequestEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ResolveMacroConformancesEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31InferredGenericSignatureRequestEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27GlobalActorAttributeRequestEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27GlobalActorAttributeRequestEvEE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22HasIsolatedSelfRequestEvEE TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_35DistributedModuleIsAvailableRequestEvEE Line | Count | Source | 120 | 8 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 8 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 8 | return hash_value(key.Req); | 124 | 8 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31CheckDistributedFunctionRequestEvEE TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30ValidatePrecedenceGroupRequestEvEE Line | Count | Source | 120 | 7.80k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 7.80k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 7.80k | return hash_value(key.Req); | 124 | 7.80k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEE TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29SynthesizeMainFunctionRequestEvEE Line | Count | Source | 120 | 15.7k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 15.7k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 15.7k | return hash_value(key.Req); | 124 | 15.7k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26HasCircularRawValueRequestEvEE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22OverriddenDeclsRequestEvEE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30IsABICompatibleOverrideRequestEvEE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ResolveImplicitMemberRequestEvEE Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34TypeCheckObjCImplementationRequestEvEE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20InheritedTypeRequestEvEE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30ExternalMacroDefinitionRequestEvEE TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25CheckRedeclarationRequestEvEE Line | Count | Source | 120 | 5.78k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 5.78k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 5.78k | return hash_value(key.Req); | 124 | 5.78k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ExpandExtensionMacrosEvEE TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22ApplyAccessNoteRequestEvEE Line | Count | Source | 120 | 351k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 351k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 351k | return hash_value(key.Req); | 124 | 351k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ResolveMacroRequestEvEE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ResolveImplicitMemberRequestEvEE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27DirectOperatorLookupRequestEvEE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEE TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18DefaultTypeRequestEvEE Line | Count | Source | 120 | 166 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 166 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 166 | return hash_value(key.Req); | 124 | 166 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31InferredGenericSignatureRequestEvEE Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31HasNoncopyableAnnotationRequestEvEE TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30ExternalMacroDefinitionRequestEvEE Line | Count | Source | 120 | 12 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 12 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 12 | return hash_value(key.Req); | 124 | 12 | } |
TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25CompilerPluginLoadRequestEvEE Line | Count | Source | 120 | 4 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4 | return hash_value(key.Req); | 124 | 4 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEE Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEE TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18PatternTypeRequestEvEE Line | Count | Source | 120 | 45.7k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 45.7k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 45.7k | return hash_value(key.Req); | 124 | 45.7k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEE Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31AttachedPropertyWrappersRequestEvEE Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEE Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEE TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20InheritedTypeRequestEvEE Line | Count | Source | 120 | 726 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 726 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 726 | return hash_value(key.Req); | 124 | 726 | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEE Line | Count | Source | 120 | 1.30k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.30k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.30k | return hash_value(key.Req); | 124 | 1.30k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEE Line | Count | Source | 120 | 25 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 25 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 25 | return hash_value(key.Req); | 124 | 25 | } |
TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25PreCheckReturnStmtRequestEvEE Line | Count | Source | 120 | 42.7k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 42.7k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 42.7k | return hash_value(key.Req); | 124 | 42.7k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEE Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27PreCheckFunctionBodyRequestEvEE Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEE Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22ExpandPeerMacroRequestEvEE TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32PropertyWrapperLValuenessRequestEvEE Line | Count | Source | 120 | 66 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 66 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 66 | return hash_value(key.Req); | 124 | 66 | } |
TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20ExpandAccessorMacrosEvEE Line | Count | Source | 120 | 61.6k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 61.6k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 61.6k | return hash_value(key.Req); | 124 | 61.6k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEE Unexecuted instantiation: TypeCheckType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18ResolveTypeRequestEvEE TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26TypeCheckSourceFileRequestEvEE Line | Count | Source | 120 | 63 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 63 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 63 | return hash_value(key.Req); | 124 | 63 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEE Line | Count | Source | 120 | 253 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 253 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 253 | return hash_value(key.Req); | 124 | 253 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEE Line | Count | Source | 120 | 1.06k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.06k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.06k | return hash_value(key.Req); | 124 | 1.06k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEE Line | Count | Source | 120 | 1.06k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.06k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.06k | return hash_value(key.Req); | 124 | 1.06k | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEE Line | Count | Source | 120 | 253 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 253 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 253 | return hash_value(key.Req); | 124 | 253 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31InferredGenericSignatureRequestEvEE Line | Count | Source | 120 | 16.9k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 16.9k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 16.9k | return hash_value(key.Req); | 124 | 16.9k | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28TypeCheckASTNodeAtLocRequestEvEE Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEE Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23ClangRecordMemberLookupEvEE Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17HasStorageRequestEvEE Line | Count | Source | 120 | 222k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 222k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 222k | return hash_value(key.Req); | 124 | 222k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEE Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ClangDirectLookupRequestEvEE Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23ClangRecordMemberLookupEvEE Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26ClangCategoryLookupRequestEvEE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_15InitKindRequestEvEE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17HasStorageRequestEvEE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18CxxRecordSemanticsEvEE Unexecuted instantiation: ImportName.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18IsSafeUseOfCxxDeclEvEE Unexecuted instantiation: ImportType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20CxxRecordAsSwiftTypeEvEE Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ParseMembersRequestEvEE Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30IDEInspectionSecondPassRequestEvEE Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEE Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22ParseSourceFileRequestEvEE Unexecuted instantiation: AccessRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31TypeDeclsFromWhereClauseRequestEvEE ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEE Line | Count | Source | 120 | 221k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 221k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 221k | return hash_value(key.Req); | 124 | 221k | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEE Line | Count | Source | 120 | 4 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4 | return hash_value(key.Req); | 124 | 4 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEE Line | Count | Source | 120 | 4 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4 | return hash_value(key.Req); | 124 | 4 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEE ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEE Line | Count | Source | 120 | 4 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4 | return hash_value(key.Req); | 124 | 4 | } |
ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEE Line | Count | Source | 120 | 4 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4 | return hash_value(key.Req); | 124 | 4 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22HasIsolatedSelfRequestEvEE Unexecuted instantiation: ASTPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ClangDirectLookupRequestEvEE Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ResolveMacroConformancesEvEE Line | Count | Source | 120 | 24 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 24 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 24 | return hash_value(key.Req); | 124 | 24 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30TypeEraserHasViableInitRequestEvEE Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ResolveTypeEraserTypeRequestEvEE Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEE Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEE Line | Count | Source | 120 | 920 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 920 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 920 | return hash_value(key.Req); | 124 | 920 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEE Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEE Line | Count | Source | 120 | 340 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 340 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 340 | return hash_value(key.Req); | 124 | 340 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEE Line | Count | Source | 120 | 1.57k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.57k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.57k | return hash_value(key.Req); | 124 | 1.57k | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29ImplementsAttrProtocolRequestEvEE Line | Count | Source | 120 | 374 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 374 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 374 | return hash_value(key.Req); | 124 | 374 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEE Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEE Line | Count | Source | 120 | 1.09k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.09k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.09k | return hash_value(key.Req); | 124 | 1.09k | } |
Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30SemanticUnavailableAttrRequestEvEE Line | Count | Source | 120 | 167k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 167k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 167k | return hash_value(key.Req); | 124 | 167k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ParseMembersRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27ExpandMemberAttributeMacrosEvEE Line | Count | Source | 120 | 1.33M | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.33M | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.33M | return hash_value(key.Req); | 124 | 1.33M | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22ExpandPeerMacroRequestEvEE Line | Count | Source | 120 | 512k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 512k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 512k | return hash_value(key.Req); | 124 | 512k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ResolveMacroRequestEvEE Line | Count | Source | 120 | 391 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 391 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 391 | return hash_value(key.Req); | 124 | 391 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27GlobalActorAttributeRequestEvEE Line | Count | Source | 120 | 399k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 399k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 399k | return hash_value(key.Req); | 124 | 399k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17ThrownTypeRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28IsAccessorTransparentRequestEvEE Line | Count | Source | 120 | 45 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 45 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 45 | return hash_value(key.Req); | 124 | 45 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23GenericParamListRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23GenericSignatureRequestEvEE Line | Count | Source | 120 | 1.34k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.34k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.34k | return hash_value(key.Req); | 124 | 1.34k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25ScopedImportLookupRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20InheritedTypeRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22ExtendedNominalRequestEvEE Line | Count | Source | 120 | 95 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 95 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 95 | return hash_value(key.Req); | 124 | 95 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEE Line | Count | Source | 120 | 2 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2 | return hash_value(key.Req); | 124 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEE Line | Count | Source | 120 | 92 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 92 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 92 | return hash_value(key.Req); | 124 | 92 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26PatternBindingEntryRequestEvEE Line | Count | Source | 120 | 806 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 806 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 806 | return hash_value(key.Req); | 124 | 806 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEE Line | Count | Source | 120 | 22 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 22 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 22 | return hash_value(key.Req); | 124 | 22 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEE Line | Count | Source | 120 | 146 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 146 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 146 | return hash_value(key.Req); | 124 | 146 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25SynthesizeAccessorRequestEvEE Line | Count | Source | 120 | 785 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 785 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 785 | return hash_value(key.Req); | 124 | 785 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30IsABICompatibleOverrideRequestEvEE Line | Count | Source | 120 | 15.4k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 15.4k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 15.4k | return hash_value(key.Req); | 124 | 15.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23IsGetterMutatingRequestEvEE Line | Count | Source | 120 | 40 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 40 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 40 | return hash_value(key.Req); | 124 | 40 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23IsSetterMutatingRequestEvEE Line | Count | Source | 120 | 43 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 43 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 43 | return hash_value(key.Req); | 124 | 43 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26OpaqueReadOwnershipRequestEvEE Line | Count | Source | 120 | 562 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 562 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 562 | return hash_value(key.Req); | 124 | 562 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEE Line | Count | Source | 120 | 33.1k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 33.1k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 33.1k | return hash_value(key.Req); | 124 | 33.1k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22OverriddenDeclsRequestEvEE Line | Count | Source | 120 | 112 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 112 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 112 | return hash_value(key.Req); | 124 | 112 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23OpaqueResultTypeRequestEvEE Line | Count | Source | 120 | 4 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4 | return hash_value(key.Req); | 124 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_13IsObjCRequestEvEE Line | Count | Source | 120 | 1.07k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.07k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.07k | return hash_value(key.Req); | 124 | 1.07k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_14IsFinalRequestEvEE Line | Count | Source | 120 | 14 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 14 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 14 | return hash_value(key.Req); | 124 | 14 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18IsEscapableRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_16IsDynamicRequestEvEE Line | Count | Source | 120 | 862 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 862 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 862 | return hash_value(key.Req); | 124 | 862 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30DynamicallyReplacedDeclRequestEvEE Line | Count | Source | 120 | 307k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 307k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 307k | return hash_value(key.Req); | 124 | 307k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20InterfaceTypeRequestEvEE Line | Count | Source | 120 | 8.29k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 8.29k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 8.29k | return hash_value(key.Req); | 124 | 8.29k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18AccessLevelRequestEvEE Line | Count | Source | 120 | 5 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 5 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 5 | return hash_value(key.Req); | 124 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31HasNoncopyableAnnotationRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23StoredPropertiesRequestEvEE Line | Count | Source | 120 | 12.4k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 12.4k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 12.4k | return hash_value(key.Req); | 124 | 12.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29InitAccessorPropertiesRequestEvEE Line | Count | Source | 120 | 1.61k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.61k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.61k | return hash_value(key.Req); | 124 | 1.61k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31MemberwiseInitPropertiesRequestEvEE Line | Count | Source | 120 | 1.62k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.62k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.62k | return hash_value(key.Req); | 124 | 1.62k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEE Line | Count | Source | 120 | 1.15k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.15k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.15k | return hash_value(key.Req); | 124 | 1.15k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEE Line | Count | Source | 120 | 36 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 36 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 36 | return hash_value(key.Req); | 124 | 36 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_14IsActorRequestEvEE Line | Count | Source | 120 | 36.7k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 36.7k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 36.7k | return hash_value(key.Req); | 124 | 36.7k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25IsDistributedActorRequestEvEE Line | Count | Source | 120 | 44.9k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 44.9k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 44.9k | return hash_value(key.Req); | 124 | 44.9k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21UnderlyingTypeRequestEvEE Line | Count | Source | 120 | 46 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 46 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 46 | return hash_value(key.Req); | 124 | 46 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21StructuralTypeRequestEvEE Line | Count | Source | 120 | 61.0k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 61.0k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 61.0k | return hash_value(key.Req); | 124 | 61.0k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28DefaultDefinitionTypeRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18EnumRawTypeRequestEvEE Line | Count | Source | 120 | 11.7k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 11.7k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 11.7k | return hash_value(key.Req); | 124 | 11.7k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24HasMemberwiseInitRequestEvEE Line | Count | Source | 120 | 2.04k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2.04k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2.04k | return hash_value(key.Req); | 124 | 2.04k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEE Line | Count | Source | 120 | 837 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 837 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 837 | return hash_value(key.Req); | 124 | 837 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEE Line | Count | Source | 120 | 484 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 484 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 484 | return hash_value(key.Req); | 124 | 484 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21HasDefaultInitRequestEvEE Line | Count | Source | 120 | 2.43k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2.43k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2.43k | return hash_value(key.Req); | 124 | 2.43k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28SynthesizeDefaultInitRequestEvEE Line | Count | Source | 120 | 335 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 335 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 335 | return hash_value(key.Req); | 124 | 335 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26GlobalActorInstanceRequestEvEE Line | Count | Source | 120 | 22 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 22 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 22 | return hash_value(key.Req); | 124 | 22 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20GetDestructorRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21IsDefaultActorRequestEvEE Line | Count | Source | 120 | 324 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 324 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 324 | return hash_value(key.Req); | 124 | 324 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEE Line | Count | Source | 120 | 2 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2 | return hash_value(key.Req); | 124 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37InheritsSuperclassInitializersRequestEvEE Line | Count | Source | 120 | 14 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 14 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 14 | return hash_value(key.Req); | 124 | 14 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25ClassAncestryFlagsRequestEvEE Line | Count | Source | 120 | 1.03k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.03k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.03k | return hash_value(key.Req); | 124 | 1.03k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26HasCircularRawValueRequestEvEE Line | Count | Source | 120 | 868 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 868 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 868 | return hash_value(key.Req); | 124 | 868 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25InheritedProtocolsRequestEvEE Line | Count | Source | 120 | 7 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 7 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 7 | return hash_value(key.Req); | 124 | 7 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27ProtocolRequirementsRequestEvEE Line | Count | Source | 120 | 24 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 24 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 24 | return hash_value(key.Req); | 124 | 24 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21SuperclassTypeRequestEvEE Line | Count | Source | 120 | 65 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 65 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 65 | return hash_value(key.Req); | 124 | 65 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21SuperclassDeclRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ProtocolRequiresClassRequestEvEE Line | Count | Source | 120 | 6 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 6 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 6 | return hash_value(key.Req); | 124 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32ExistentialConformsToSelfRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEE Line | Count | Source | 120 | 1 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1 | return hash_value(key.Req); | 124 | 1 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29PrimaryAssociatedTypesRequestEvEE Line | Count | Source | 120 | 230 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 230 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 230 | return hash_value(key.Req); | 124 | 230 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29StructuralRequirementsRequestEvEE Line | Count | Source | 120 | 462 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 462 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 462 | return hash_value(key.Req); | 124 | 462 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28TypeAliasRequirementsRequestEvEE Line | Count | Source | 120 | 461 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 461 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 461 | return hash_value(key.Req); | 124 | 461 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27ProtocolDependenciesRequestEvEE Line | Count | Source | 120 | 11.9k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 11.9k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 11.9k | return hash_value(key.Req); | 124 | 11.9k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27RequirementSignatureRequestEvEE Line | Count | Source | 120 | 25 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 25 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 25 | return hash_value(key.Req); | 124 | 25 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEE Line | Count | Source | 120 | 514 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 514 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 514 | return hash_value(key.Req); | 124 | 514 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17HasStorageRequestEvEE Line | Count | Source | 120 | 20 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 20 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 20 | return hash_value(key.Req); | 124 | 20 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22StorageImplInfoRequestEvEE Line | Count | Source | 120 | 24 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 24 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 24 | return hash_value(key.Req); | 124 | 24 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24SetterAccessLevelRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22HasInitAccessorRequestEvEE Line | Count | Source | 120 | 120k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 120k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 120k | return hash_value(key.Req); | 124 | 120k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27DefaultInitializerIsolationEvEE Line | Count | Source | 120 | 640k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 640k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 640k | return hash_value(key.Req); | 124 | 640k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20NamingPatternRequestEvEE Line | Count | Source | 120 | 355 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 355 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 355 | return hash_value(key.Req); | 124 | 355 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ParamSpecifierRequestEvEE Line | Count | Source | 120 | 8 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 8 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 8 | return hash_value(key.Req); | 124 | 8 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31AttachedPropertyWrappersRequestEvEE Line | Count | Source | 120 | 602k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 602k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 602k | return hash_value(key.Req); | 124 | 602k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEE Line | Count | Source | 120 | 1.70k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.70k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.70k | return hash_value(key.Req); | 124 | 1.70k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEE Line | Count | Source | 120 | 1.67k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.67k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.67k | return hash_value(key.Req); | 124 | 1.67k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEE Line | Count | Source | 120 | 149k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 149k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 149k | return hash_value(key.Req); | 124 | 149k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEE Line | Count | Source | 120 | 43.0k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 43.0k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 43.0k | return hash_value(key.Req); | 124 | 43.0k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32PropertyWrapperMutabilityRequestEvEE Line | Count | Source | 120 | 52.6k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 52.6k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 52.6k | return hash_value(key.Req); | 124 | 52.6k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LazyStoragePropertyRequestEvEE Line | Count | Source | 120 | 5 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 5 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 5 | return hash_value(key.Req); | 124 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_33DefaultArgumentInitContextRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26DefaultArgumentExprRequestEvEE Line | Count | Source | 120 | 22 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 22 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 22 | return hash_value(key.Req); | 124 | 22 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26DefaultArgumentTypeRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ResultBuilderTypeRequestEvEE Line | Count | Source | 120 | 36.9k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 36.9k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 36.9k | return hash_value(key.Req); | 124 | 36.9k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28AttachedResultBuilderRequestEvEE Line | Count | Source | 120 | 161k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 161k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 161k | return hash_value(key.Req); | 124 | 161k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17ResultTypeRequestEvEE Line | Count | Source | 120 | 1.29k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.29k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.29k | return hash_value(key.Req); | 124 | 1.29k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18RenamedDeclRequestEvEE Line | Count | Source | 120 | 769 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 769 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 769 | return hash_value(key.Req); | 124 | 769 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEE Line | Count | Source | 120 | 2.28k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2.28k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2.28k | return hash_value(key.Req); | 124 | 2.28k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28TypeCheckFunctionBodyRequestEvEE Line | Count | Source | 120 | 4.18k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4.18k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4.18k | return hash_value(key.Req); | 124 | 4.18k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28IsFunctionBodySkippedRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26NeedsNewVTableEntryRequestEvEE Line | Count | Source | 120 | 92 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 92 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 92 | return hash_value(key.Req); | 124 | 92 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23FunctionOperatorRequestEvEE Line | Count | Source | 120 | 149k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 149k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 149k | return hash_value(key.Req); | 124 | 149k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_15IsStaticRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19SimpleDidSetRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21SelfAccessKindRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20EnumRawValuesRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_15InitKindRequestEvEE Line | Count | Source | 120 | 75.4k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 75.4k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 75.4k | return hash_value(key.Req); | 124 | 75.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19BodyInitKindRequestEvEE Line | Count | Source | 120 | 4.49k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4.49k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4.49k | return hash_value(key.Req); | 124 | 4.49k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30OperatorPrecedenceGroupRequestEvEE Line | Count | Source | 120 | 4.15k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4.15k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4.15k | return hash_value(key.Req); | 124 | 4.15k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ActorIsolationRequestEvEE Line | Count | Source | 120 | 282k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 282k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 282k | return hash_value(key.Req); | 124 | 282k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31ExpandMacroExpansionExprRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ResolveMacroConformancesEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22MacroDefinitionRequestEvEE Line | Count | Source | 120 | 12 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 12 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 12 | return hash_value(key.Req); | 124 | 12 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ResolveImplicitMemberRequestEvEE DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26FragileFunctionKindRequestEvEE Line | Count | Source | 120 | 161k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 161k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 161k | return hash_value(key.Req); | 124 | 161k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ParseMembersRequestEvEE Line | Count | Source | 120 | 21.2k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 21.2k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 21.2k | return hash_value(key.Req); | 124 | 21.2k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17ABIMembersRequestEvEE Line | Count | Source | 120 | 17.0k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 17.0k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 17.0k | return hash_value(key.Req); | 124 | 17.0k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17AllMembersRequestEvEE Line | Count | Source | 120 | 13.0k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 13.0k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 13.0k | return hash_value(key.Req); | 124 | 13.0k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEE DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEE Line | Count | Source | 120 | 8 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 8 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 8 | return hash_value(key.Req); | 124 | 8 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26GetDistributedThunkRequestEvEE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEE DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEE Line | Count | Source | 120 | 4 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4 | return hash_value(key.Req); | 124 | 4 | } |
DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27SemanticBriefCommentRequestEvEE Line | Count | Source | 120 | 3.95k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 3.95k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 3.95k | return hash_value(key.Req); | 124 | 3.95k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEE Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28PolymorphicEffectKindRequestEvEE Line | Count | Source | 120 | 40.9k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 40.9k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 40.9k | return hash_value(key.Req); | 124 | 40.9k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27ConformanceHasEffectRequestEvEE Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31CallerSideDefaultArgExprRequestEvEE Line | Count | Source | 120 | 4.59k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4.59k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4.59k | return hash_value(key.Req); | 124 | 4.59k | } |
Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEE Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ClosureEffectsRequestEvEE Line | Count | Source | 120 | 5.29k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 5.29k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 5.29k | return hash_value(key.Req); | 124 | 5.29k | } |
GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31AbstractGenericSignatureRequestEvEE Line | Count | Source | 120 | 5.73k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 5.73k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 5.73k | return hash_value(key.Req); | 124 | 5.73k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22IsNonUserModuleRequestEvEE Line | Count | Source | 120 | 11 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 11 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 11 | return hash_value(key.Req); | 124 | 11 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ModuleImplicitImportsRequestEvEE Line | Count | Source | 120 | 268 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 268 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 268 | return hash_value(key.Req); | 124 | 268 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25PrimarySourceFilesRequestEvEE Line | Count | Source | 120 | 210 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 210 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 210 | return hash_value(key.Req); | 124 | 210 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26MangleLocalTypeDeclRequestEvEE Line | Count | Source | 120 | 9 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 9 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 9 | return hash_value(key.Req); | 124 | 9 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ExpandExtensionMacrosEvEE Line | Count | Source | 120 | 15.4k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 15.4k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 15.4k | return hash_value(key.Req); | 124 | 15.4k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_39ImplicitKnownProtocolConformanceRequestEvEE Line | Count | Source | 120 | 6.45k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 6.45k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 6.45k | return hash_value(key.Req); | 124 | 6.45k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEE Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22ParseSourceFileRequestEvEE Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29HasImportsMatchingFlagRequestEvEE Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_16SPIGroupsRequestEvEE Line | Count | Source | 120 | 314k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 314k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 314k | return hash_value(key.Req); | 124 | 314k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25ModuleLibraryLevelRequestEvEE Line | Count | Source | 120 | 224 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 224 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 224 | return hash_value(key.Req); | 124 | 224 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25ParseTopLevelDeclsRequestEvEE Line | Count | Source | 120 | 1.08k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.08k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.08k | return hash_value(key.Req); | 124 | 1.08k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25ExportedSourceFileRequestEvEE Line | Count | Source | 120 | 713 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 713 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 713 | return hash_value(key.Req); | 124 | 713 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22GetSourceFileAsyncNodeEvEE Line | Count | Source | 120 | 100 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 100 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 100 | return hash_value(key.Req); | 124 | 100 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32LookupConformanceInModuleRequestEvEE Unexecuted instantiation: ModuleNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21LookupInModuleRequestEvEE NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEE Line | Count | Source | 120 | 16.7k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 16.7k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 16.7k | return hash_value(key.Req); | 124 | 16.7k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ExpandExtensionMacrosEvEE NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEE Line | Count | Source | 120 | 177k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 177k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 177k | return hash_value(key.Req); | 124 | 177k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21SuperclassDeclRequestEvEE Line | Count | Source | 120 | 187 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 187 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 187 | return hash_value(key.Req); | 124 | 187 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30IsCallAsFunctionNominalRequestEvEE Line | Count | Source | 120 | 77 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 77 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 77 | return hash_value(key.Req); | 124 | 77 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEE Line | Count | Source | 120 | 7.85k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 7.85k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 7.85k | return hash_value(key.Req); | 124 | 7.85k | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34HasDynamicCallableAttributeRequestEvEE Line | Count | Source | 120 | 149 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 149 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 149 | return hash_value(key.Req); | 124 | 149 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32SelfBoundsFromWhereClauseRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37SelfBoundsFromGenericSignatureRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19DirectLookupRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24CXXNamespaceMemberLookupEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23ClangRecordMemberLookupEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22AnyObjectLookupRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22QualifiedLookupRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ModuleQualifiedLookupRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36UnderlyingTypeDeclsReferencedRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31InheritedDeclsReferencedRequestEvEE OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LookupInfixOperatorRequestEvEE Line | Count | Source | 120 | 2.95k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2.95k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2.95k | return hash_value(key.Req); | 124 | 2.95k | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27LookupPrefixOperatorRequestEvEE Line | Count | Source | 120 | 8 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 8 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 8 | return hash_value(key.Req); | 124 | 8 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28LookupPostfixOperatorRequestEvEE OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28LookupPrecedenceGroupRequestEvEE Line | Count | Source | 120 | 745 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 745 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 745 | return hash_value(key.Req); | 124 | 745 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27DirectOperatorLookupRequestEvEE Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEE Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23ExprPatternMatchRequestEvEE ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30ConditionalRequirementsRequestEvEE Line | Count | Source | 120 | 37.4k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 37.4k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 37.4k | return hash_value(key.Req); | 124 | 37.4k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18TypeWitnessRequestEvEE Line | Count | Source | 120 | 62 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 62 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 62 | return hash_value(key.Req); | 124 | 62 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28AssociatedConformanceRequestEvEE Line | Count | Source | 120 | 994 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 994 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 994 | return hash_value(key.Req); | 124 | 994 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ValueWitnessRequestEvEE Line | Count | Source | 120 | 3 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 3 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 3 | return hash_value(key.Req); | 124 | 3 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37LookupAllConformancesInContextRequestEvEE Line | Count | Source | 120 | 24.7k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 24.7k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 24.7k | return hash_value(key.Req); | 124 | 24.7k | } |
RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17RawCommentRequestEvEE Line | Count | Source | 120 | 18.5k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 18.5k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 18.5k | return hash_value(key.Req); | 124 | 18.5k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31AbstractGenericSignatureRequestEvEE Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24IsSingleValueStmtRequestEvEE Line | Count | Source | 120 | 26.7k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 26.7k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 26.7k | return hash_value(key.Req); | 124 | 26.7k | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18BreakTargetRequestEvEE Line | Count | Source | 120 | 219 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 219 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 219 | return hash_value(key.Req); | 124 | 219 | } |
Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ContinueTargetRequestEvEE Line | Count | Source | 120 | 82 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 82 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 82 | return hash_value(key.Req); | 124 | 82 | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20IsNoncopyableRequestEvEE TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18RequirementRequestEvEE Line | Count | Source | 120 | 16.9k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 16.9k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 16.9k | return hash_value(key.Req); | 124 | 16.9k | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEE Line | Count | Source | 120 | 62.8k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 62.8k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 62.8k | return hash_value(key.Req); | 124 | 62.8k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20USRGenerationRequestEvEE |
125 | | }; |
126 | | |
127 | | template <typename Request> |
128 | | class RequestKey<Request, typename detail::TupleHasDenseMapInfo< |
129 | | typename Request::Storage>::type> { |
130 | | friend struct llvm::DenseMapInfo<RequestKey>; |
131 | | using Info = llvm::DenseMapInfo<typename Request::Storage>; |
132 | | |
133 | | Request Req; |
134 | | |
135 | | static RequestKey getEmpty() { |
136 | | return RequestKey(Request(Info::getEmptyKey())); |
137 | | } |
138 | | static RequestKey getTombstone() { |
139 | | return RequestKey(Request(Info::getTombstoneKey())); |
140 | | } |
141 | | |
142 | | public: |
143 | | explicit RequestKey(Request req) : Req(std::move(req)) {} |
144 | | |
145 | | bool isStorageEqual(const Request &req) const { |
146 | | return Req == req; |
147 | | } |
148 | | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { |
149 | | return lhs.Req == rhs.Req; |
150 | | } |
151 | | friend bool operator!=(const RequestKey &lhs, const RequestKey &rhs) { |
152 | | return !(lhs == rhs); |
153 | | } |
154 | | friend llvm::hash_code hash_value(const RequestKey &key) { |
155 | | return hash_value(key.Req); |
156 | | } |
157 | | }; |
158 | | |
159 | | } // end namespace |
160 | | |
161 | | /// Type-erased wrapper for caching results of a single type of request. |
162 | | class PerRequestCache { |
163 | | void *Storage; |
164 | | std::function<void(void *)> Deleter; |
165 | | |
166 | | PerRequestCache(void *storage, std::function<void(void *)> deleter) |
167 | 15.6k | : Storage(storage), Deleter(deleter) {} |
168 | | |
169 | | public: |
170 | 60.7k | PerRequestCache() : Storage(nullptr), Deleter([](void *) {}) {} |
171 | | PerRequestCache(PerRequestCache &&other) |
172 | 15.6k | : Storage(other.Storage), Deleter(std::move(other.Deleter)) { |
173 | 15.6k | other.Storage = nullptr; |
174 | 15.6k | } |
175 | | |
176 | 15.6k | PerRequestCache &operator=(PerRequestCache &&other) { |
177 | 15.6k | if (&other != this) { |
178 | 15.6k | this->~PerRequestCache(); |
179 | 15.6k | new (this) PerRequestCache(std::move(other)); |
180 | 15.6k | } |
181 | 15.6k | return *this; |
182 | 15.6k | } |
183 | | |
184 | | PerRequestCache(const PerRequestCache &) = delete; |
185 | | PerRequestCache &operator=(const PerRequestCache &) = delete; |
186 | | |
187 | | template <typename Request> |
188 | 15.6k | static PerRequestCache makeEmpty() { |
189 | 15.6k | using Map = |
190 | 15.6k | llvm::DenseMap<RequestKey<Request>, |
191 | 15.6k | typename Request::OutputType>; |
192 | 15.6k | return PerRequestCache(new Map(), |
193 | 15.6k | [](void *ptr) { delete static_cast<Map *>(ptr); });_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_20USRGenerationRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 35 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24IDEInspectionFileRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24ConstantValueInfoRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22SymbolSourceMapRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26ResolveProtocolNameRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28ProvideDefaultImplForRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29CollectOverriddenDeclsRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_23IsDeclApplicableRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24TypeRelationCheckRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28PreCheckResultBuilderRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_32CompareDeclSpecializationRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 143 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29EnumElementExprPatternRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25IsDeclRefinementOfRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 64 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_35HasUserDefinedDesignatedInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 124 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_44AreAllStoredPropertiesDefaultInitableRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 103 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31ClosureHasExplicitResultRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 75 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28TangentStoredPropertyRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 47 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28IsCCompatibleFuncDeclRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_35DistributedModuleIsAvailableRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31CheckDistributedFunctionRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30ValidatePrecedenceGroupRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 113 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29SynthesizeMainFunctionRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 158 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_34TypeCheckObjCImplementationRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22ApplyAccessNoteRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 229 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30ExternalMacroDefinitionRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25CompilerPluginLoadRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_18PatternTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 200 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24CustomAttrNominalRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 16 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25PreCheckReturnStmtRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 179 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_32PropertyWrapperLValuenessRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_20ExpandAccessorMacrosEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 194 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_49CheckInconsistentImplementationOnlyImportsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 253 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_38CheckInconsistentSPIOnlyImportsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 253 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_36CheckInconsistentAccessLevelOnImportEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 253 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_41CheckInconsistentWeakLinkedImportsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 253 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31InferredGenericSignatureRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 170 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26CustomRefCountingOperationEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_17HasStorageRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 262 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26LocalDiscriminatorsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 141 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_19ExtendedTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 251 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24ResolveMacroConformancesEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30TypeEraserHasViableInitRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31SpecializeAttrTargetDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 55 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_33DerivativeAttrOriginalDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 45 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29ImplementsAttrProtocolRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 76 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_38InitAccessorReferencedVariablesRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_33SemanticAvailableRangeAttrRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30SemanticUnavailableAttrRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 196 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27ExpandMemberAttributeMacrosEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 268 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22ExpandPeerMacroRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 264 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31ExpandMacroExpansionDeclRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_19ResolveMacroRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27GlobalActorAttributeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 224 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ScopedImportLookupRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30IsABICompatibleOverrideRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 99 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_23OpaqueResultTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30DynamicallyReplacedDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 224 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_23StoredPropertiesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 252 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29InitAccessorPropertiesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 122 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31MemberwiseInitPropertiesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 122 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_40StoredPropertiesAndMissingMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 70 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30PropertyWrapperTypeInfoRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 16 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_14IsActorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 209 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25IsDistributedActorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 258 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21StructuralTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 262 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_18EnumRawTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 220 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24HasMemberwiseInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 117 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31SynthesizeMemberwiseInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 74 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_37ResolveEffectiveMemberwiseInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 62 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21HasDefaultInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 120 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28SynthesizeDefaultInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 75 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26GlobalActorInstanceRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21IsDefaultActorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 43 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ClassAncestryFlagsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 118 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26HasCircularRawValueRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 67 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29PrimaryAssociatedTypesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 48 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29StructuralRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 82 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28TypeAliasRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 82 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27ProtocolDependenciesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 224 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_36HasCircularInheritedProtocolsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 74 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22HasInitAccessorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 258 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27DefaultInitializerIsolationEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 263 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31AttachedPropertyWrappersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 238 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_34AttachedPropertyWrapperTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 77 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_41PropertyWrapperBackingPropertyTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 77 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_40PropertyWrapperAuxiliaryVariablesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 209 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_37PropertyWrapperInitializerInfoRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 201 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_32PropertyWrapperMutabilityRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 202 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26LazyStoragePropertyRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24ResultBuilderTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 197 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28AttachedResultBuilderRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 223 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_18RenamedDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_23FunctionOperatorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 210 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_19SimpleDidSetRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_15InitKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 258 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_19BodyInitKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 117 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30OperatorPrecedenceGroupRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 210 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ActorIsolationRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 224 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31ExpandMacroExpansionExprRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22MacroDefinitionRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26FragileFunctionKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 224 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_19ParseMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 177 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_17ABIMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 174 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_17AllMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 138 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_48GetDistributedActorArgumentDecodingMethodRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_43GetDistributedActorInvocationDecoderRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26GetDistributedThunkRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_40GetDistributedActorSystemPropertyRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_36GetDistributedActorIDPropertyRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27SemanticBriefCommentRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 19 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_36PolymorphicEffectRequirementsRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28PolymorphicEffectKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 184 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27ConformanceHasEffectRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ClosureEffectsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 117 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31AbstractGenericSignatureRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 172 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22IsNonUserModuleRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 11 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28ModuleImplicitImportsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 268 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25PrimarySourceFilesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 210 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26MangleLocalTypeDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ExpandExtensionMacrosEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 246 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_39ImplicitKnownProtocolConformanceRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 185 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_41GetDistributedActorImplicitCodableRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_16SPIGroupsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 235 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ModuleLibraryLevelRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 78 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ParseTopLevelDeclsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 256 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ExportedSourceFileRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 240 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22GetSourceFileAsyncNodeEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 100 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_35ExpandSynthesizedMemberMacroRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 171 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_40PotentialMacroExpansionsInContextRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 252 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30IsCallAsFunctionNominalRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 21 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_38HasDynamicMemberLookupAttributeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 151 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_34HasDynamicCallableAttributeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26LookupInfixOperatorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 162 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27LookupPrefixOperatorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28LookupPostfixOperatorRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28LookupPrecedenceGroupRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 113 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30ConditionalRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 215 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_37LookupAllConformancesInContextRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 195 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_17RawCommentRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 32 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24IsSingleValueStmtRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 172 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_18BreakTargetRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ContinueTargetRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_20IsNoncopyableRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_18RequirementRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 111 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_40ExpandChildTypeRefinementContextsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 187 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
|
194 | 15.6k | } _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_20USRGenerationRequestEEES1_v Line | Count | Source | 188 | 35 | static PerRequestCache makeEmpty() { | 189 | 35 | using Map = | 190 | 35 | llvm::DenseMap<RequestKey<Request>, | 191 | 35 | typename Request::OutputType>; | 192 | 35 | return PerRequestCache(new Map(), | 193 | 35 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 35 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24IDEInspectionFileRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24ConstantValueInfoRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26CustomRefCountingOperationEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22SymbolSourceMapRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26ResolveProtocolNameRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28ProvideDefaultImplForRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29CollectOverriddenDeclsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_23IsDeclApplicableRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24TypeRelationCheckRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28PreCheckResultBuilderRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_32CompareDeclSpecializationRequestEEES1_v Line | Count | Source | 188 | 143 | static PerRequestCache makeEmpty() { | 189 | 143 | using Map = | 190 | 143 | llvm::DenseMap<RequestKey<Request>, | 191 | 143 | typename Request::OutputType>; | 192 | 143 | return PerRequestCache(new Map(), | 193 | 143 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 143 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29EnumElementExprPatternRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25IsDeclRefinementOfRequestEEES1_v Line | Count | Source | 188 | 64 | static PerRequestCache makeEmpty() { | 189 | 64 | using Map = | 190 | 64 | llvm::DenseMap<RequestKey<Request>, | 191 | 64 | typename Request::OutputType>; | 192 | 64 | return PerRequestCache(new Map(), | 193 | 64 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 64 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_35HasUserDefinedDesignatedInitRequestEEES1_v Line | Count | Source | 188 | 124 | static PerRequestCache makeEmpty() { | 189 | 124 | using Map = | 190 | 124 | llvm::DenseMap<RequestKey<Request>, | 191 | 124 | typename Request::OutputType>; | 192 | 124 | return PerRequestCache(new Map(), | 193 | 124 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 124 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_44AreAllStoredPropertiesDefaultInitableRequestEEES1_v Line | Count | Source | 188 | 103 | static PerRequestCache makeEmpty() { | 189 | 103 | using Map = | 190 | 103 | llvm::DenseMap<RequestKey<Request>, | 191 | 103 | typename Request::OutputType>; | 192 | 103 | return PerRequestCache(new Map(), | 193 | 103 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 103 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31ClosureHasExplicitResultRequestEEES1_v Line | Count | Source | 188 | 75 | static PerRequestCache makeEmpty() { | 189 | 75 | using Map = | 190 | 75 | llvm::DenseMap<RequestKey<Request>, | 191 | 75 | typename Request::OutputType>; | 192 | 75 | return PerRequestCache(new Map(), | 193 | 75 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 75 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28TangentStoredPropertyRequestEEES1_v Line | Count | Source | 188 | 47 | static PerRequestCache makeEmpty() { | 189 | 47 | using Map = | 190 | 47 | llvm::DenseMap<RequestKey<Request>, | 191 | 47 | typename Request::OutputType>; | 192 | 47 | return PerRequestCache(new Map(), | 193 | 47 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 47 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28IsCCompatibleFuncDeclRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_35DistributedModuleIsAvailableRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31CheckDistributedFunctionRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30ValidatePrecedenceGroupRequestEEES1_v Line | Count | Source | 188 | 113 | static PerRequestCache makeEmpty() { | 189 | 113 | using Map = | 190 | 113 | llvm::DenseMap<RequestKey<Request>, | 191 | 113 | typename Request::OutputType>; | 192 | 113 | return PerRequestCache(new Map(), | 193 | 113 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 113 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29SynthesizeMainFunctionRequestEEES1_v Line | Count | Source | 188 | 158 | static PerRequestCache makeEmpty() { | 189 | 158 | using Map = | 190 | 158 | llvm::DenseMap<RequestKey<Request>, | 191 | 158 | typename Request::OutputType>; | 192 | 158 | return PerRequestCache(new Map(), | 193 | 158 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 158 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_34TypeCheckObjCImplementationRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22ApplyAccessNoteRequestEEES1_v Line | Count | Source | 188 | 229 | static PerRequestCache makeEmpty() { | 189 | 229 | using Map = | 190 | 229 | llvm::DenseMap<RequestKey<Request>, | 191 | 229 | typename Request::OutputType>; | 192 | 229 | return PerRequestCache(new Map(), | 193 | 229 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 229 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30ExternalMacroDefinitionRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25CompilerPluginLoadRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_18PatternTypeRequestEEES1_v Line | Count | Source | 188 | 200 | static PerRequestCache makeEmpty() { | 189 | 200 | using Map = | 190 | 200 | llvm::DenseMap<RequestKey<Request>, | 191 | 200 | typename Request::OutputType>; | 192 | 200 | return PerRequestCache(new Map(), | 193 | 200 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 200 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24CustomAttrNominalRequestEEES1_v Line | Count | Source | 188 | 16 | static PerRequestCache makeEmpty() { | 189 | 16 | using Map = | 190 | 16 | llvm::DenseMap<RequestKey<Request>, | 191 | 16 | typename Request::OutputType>; | 192 | 16 | return PerRequestCache(new Map(), | 193 | 16 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 16 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25PreCheckReturnStmtRequestEEES1_v Line | Count | Source | 188 | 179 | static PerRequestCache makeEmpty() { | 189 | 179 | using Map = | 190 | 179 | llvm::DenseMap<RequestKey<Request>, | 191 | 179 | typename Request::OutputType>; | 192 | 179 | return PerRequestCache(new Map(), | 193 | 179 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 179 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_32PropertyWrapperLValuenessRequestEEES1_v Line | Count | Source | 188 | 8 | static PerRequestCache makeEmpty() { | 189 | 8 | using Map = | 190 | 8 | llvm::DenseMap<RequestKey<Request>, | 191 | 8 | typename Request::OutputType>; | 192 | 8 | return PerRequestCache(new Map(), | 193 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 8 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_20ExpandAccessorMacrosEEES1_v Line | Count | Source | 188 | 194 | static PerRequestCache makeEmpty() { | 189 | 194 | using Map = | 190 | 194 | llvm::DenseMap<RequestKey<Request>, | 191 | 194 | typename Request::OutputType>; | 192 | 194 | return PerRequestCache(new Map(), | 193 | 194 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 194 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_49CheckInconsistentImplementationOnlyImportsRequestEEES1_v Line | Count | Source | 188 | 253 | static PerRequestCache makeEmpty() { | 189 | 253 | using Map = | 190 | 253 | llvm::DenseMap<RequestKey<Request>, | 191 | 253 | typename Request::OutputType>; | 192 | 253 | return PerRequestCache(new Map(), | 193 | 253 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 253 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_38CheckInconsistentSPIOnlyImportsRequestEEES1_v Line | Count | Source | 188 | 253 | static PerRequestCache makeEmpty() { | 189 | 253 | using Map = | 190 | 253 | llvm::DenseMap<RequestKey<Request>, | 191 | 253 | typename Request::OutputType>; | 192 | 253 | return PerRequestCache(new Map(), | 193 | 253 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 253 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_36CheckInconsistentAccessLevelOnImportEEES1_v Line | Count | Source | 188 | 253 | static PerRequestCache makeEmpty() { | 189 | 253 | using Map = | 190 | 253 | llvm::DenseMap<RequestKey<Request>, | 191 | 253 | typename Request::OutputType>; | 192 | 253 | return PerRequestCache(new Map(), | 193 | 253 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 253 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_41CheckInconsistentWeakLinkedImportsRequestEEES1_v Line | Count | Source | 188 | 253 | static PerRequestCache makeEmpty() { | 189 | 253 | using Map = | 190 | 253 | llvm::DenseMap<RequestKey<Request>, | 191 | 253 | typename Request::OutputType>; | 192 | 253 | return PerRequestCache(new Map(), | 193 | 253 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 253 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31InferredGenericSignatureRequestEEES1_v Line | Count | Source | 188 | 170 | static PerRequestCache makeEmpty() { | 189 | 170 | using Map = | 190 | 170 | llvm::DenseMap<RequestKey<Request>, | 191 | 170 | typename Request::OutputType>; | 192 | 170 | return PerRequestCache(new Map(), | 193 | 170 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 170 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_17HasStorageRequestEEES1_v Line | Count | Source | 188 | 262 | static PerRequestCache makeEmpty() { | 189 | 262 | using Map = | 190 | 262 | llvm::DenseMap<RequestKey<Request>, | 191 | 262 | typename Request::OutputType>; | 192 | 262 | return PerRequestCache(new Map(), | 193 | 262 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 262 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26LocalDiscriminatorsRequestEEES1_v Line | Count | Source | 188 | 141 | static PerRequestCache makeEmpty() { | 189 | 141 | using Map = | 190 | 141 | llvm::DenseMap<RequestKey<Request>, | 191 | 141 | typename Request::OutputType>; | 192 | 141 | return PerRequestCache(new Map(), | 193 | 141 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 141 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_19ExtendedTypeRequestEEES1_v Line | Count | Source | 188 | 251 | static PerRequestCache makeEmpty() { | 189 | 251 | using Map = | 190 | 251 | llvm::DenseMap<RequestKey<Request>, | 191 | 251 | typename Request::OutputType>; | 192 | 251 | return PerRequestCache(new Map(), | 193 | 251 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 251 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24ResolveMacroConformancesEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30TypeEraserHasViableInitRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31SpecializeAttrTargetDeclRequestEEES1_v Line | Count | Source | 188 | 55 | static PerRequestCache makeEmpty() { | 189 | 55 | using Map = | 190 | 55 | llvm::DenseMap<RequestKey<Request>, | 191 | 55 | typename Request::OutputType>; | 192 | 55 | return PerRequestCache(new Map(), | 193 | 55 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 55 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_33DerivativeAttrOriginalDeclRequestEEES1_v Line | Count | Source | 188 | 45 | static PerRequestCache makeEmpty() { | 189 | 45 | using Map = | 190 | 45 | llvm::DenseMap<RequestKey<Request>, | 191 | 45 | typename Request::OutputType>; | 192 | 45 | return PerRequestCache(new Map(), | 193 | 45 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 45 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29ImplementsAttrProtocolRequestEEES1_v Line | Count | Source | 188 | 76 | static PerRequestCache makeEmpty() { | 189 | 76 | using Map = | 190 | 76 | llvm::DenseMap<RequestKey<Request>, | 191 | 76 | typename Request::OutputType>; | 192 | 76 | return PerRequestCache(new Map(), | 193 | 76 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 76 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_38InitAccessorReferencedVariablesRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_33SemanticAvailableRangeAttrRequestEEES1_v Line | Count | Source | 188 | 14 | static PerRequestCache makeEmpty() { | 189 | 14 | using Map = | 190 | 14 | llvm::DenseMap<RequestKey<Request>, | 191 | 14 | typename Request::OutputType>; | 192 | 14 | return PerRequestCache(new Map(), | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 14 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30SemanticUnavailableAttrRequestEEES1_v Line | Count | Source | 188 | 196 | static PerRequestCache makeEmpty() { | 189 | 196 | using Map = | 190 | 196 | llvm::DenseMap<RequestKey<Request>, | 191 | 196 | typename Request::OutputType>; | 192 | 196 | return PerRequestCache(new Map(), | 193 | 196 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 196 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27ExpandMemberAttributeMacrosEEES1_v Line | Count | Source | 188 | 268 | static PerRequestCache makeEmpty() { | 189 | 268 | using Map = | 190 | 268 | llvm::DenseMap<RequestKey<Request>, | 191 | 268 | typename Request::OutputType>; | 192 | 268 | return PerRequestCache(new Map(), | 193 | 268 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 268 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22ExpandPeerMacroRequestEEES1_v Line | Count | Source | 188 | 264 | static PerRequestCache makeEmpty() { | 189 | 264 | using Map = | 190 | 264 | llvm::DenseMap<RequestKey<Request>, | 191 | 264 | typename Request::OutputType>; | 192 | 264 | return PerRequestCache(new Map(), | 193 | 264 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 264 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31ExpandMacroExpansionDeclRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_19ResolveMacroRequestEEES1_v Line | Count | Source | 188 | 12 | static PerRequestCache makeEmpty() { | 189 | 12 | using Map = | 190 | 12 | llvm::DenseMap<RequestKey<Request>, | 191 | 12 | typename Request::OutputType>; | 192 | 12 | return PerRequestCache(new Map(), | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 12 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27GlobalActorAttributeRequestEEES1_v Line | Count | Source | 188 | 224 | static PerRequestCache makeEmpty() { | 189 | 224 | using Map = | 190 | 224 | llvm::DenseMap<RequestKey<Request>, | 191 | 224 | typename Request::OutputType>; | 192 | 224 | return PerRequestCache(new Map(), | 193 | 224 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 224 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ScopedImportLookupRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30IsABICompatibleOverrideRequestEEES1_v Line | Count | Source | 188 | 99 | static PerRequestCache makeEmpty() { | 189 | 99 | using Map = | 190 | 99 | llvm::DenseMap<RequestKey<Request>, | 191 | 99 | typename Request::OutputType>; | 192 | 99 | return PerRequestCache(new Map(), | 193 | 99 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 99 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_23OpaqueResultTypeRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30DynamicallyReplacedDeclRequestEEES1_v Line | Count | Source | 188 | 224 | static PerRequestCache makeEmpty() { | 189 | 224 | using Map = | 190 | 224 | llvm::DenseMap<RequestKey<Request>, | 191 | 224 | typename Request::OutputType>; | 192 | 224 | return PerRequestCache(new Map(), | 193 | 224 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 224 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_23StoredPropertiesRequestEEES1_v Line | Count | Source | 188 | 252 | static PerRequestCache makeEmpty() { | 189 | 252 | using Map = | 190 | 252 | llvm::DenseMap<RequestKey<Request>, | 191 | 252 | typename Request::OutputType>; | 192 | 252 | return PerRequestCache(new Map(), | 193 | 252 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 252 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29InitAccessorPropertiesRequestEEES1_v Line | Count | Source | 188 | 122 | static PerRequestCache makeEmpty() { | 189 | 122 | using Map = | 190 | 122 | llvm::DenseMap<RequestKey<Request>, | 191 | 122 | typename Request::OutputType>; | 192 | 122 | return PerRequestCache(new Map(), | 193 | 122 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 122 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31MemberwiseInitPropertiesRequestEEES1_v Line | Count | Source | 188 | 122 | static PerRequestCache makeEmpty() { | 189 | 122 | using Map = | 190 | 122 | llvm::DenseMap<RequestKey<Request>, | 191 | 122 | typename Request::OutputType>; | 192 | 122 | return PerRequestCache(new Map(), | 193 | 122 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 122 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_40StoredPropertiesAndMissingMembersRequestEEES1_v Line | Count | Source | 188 | 70 | static PerRequestCache makeEmpty() { | 189 | 70 | using Map = | 190 | 70 | llvm::DenseMap<RequestKey<Request>, | 191 | 70 | typename Request::OutputType>; | 192 | 70 | return PerRequestCache(new Map(), | 193 | 70 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 70 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30PropertyWrapperTypeInfoRequestEEES1_v Line | Count | Source | 188 | 16 | static PerRequestCache makeEmpty() { | 189 | 16 | using Map = | 190 | 16 | llvm::DenseMap<RequestKey<Request>, | 191 | 16 | typename Request::OutputType>; | 192 | 16 | return PerRequestCache(new Map(), | 193 | 16 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 16 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_14IsActorRequestEEES1_v Line | Count | Source | 188 | 209 | static PerRequestCache makeEmpty() { | 189 | 209 | using Map = | 190 | 209 | llvm::DenseMap<RequestKey<Request>, | 191 | 209 | typename Request::OutputType>; | 192 | 209 | return PerRequestCache(new Map(), | 193 | 209 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 209 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25IsDistributedActorRequestEEES1_v Line | Count | Source | 188 | 258 | static PerRequestCache makeEmpty() { | 189 | 258 | using Map = | 190 | 258 | llvm::DenseMap<RequestKey<Request>, | 191 | 258 | typename Request::OutputType>; | 192 | 258 | return PerRequestCache(new Map(), | 193 | 258 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 258 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21StructuralTypeRequestEEES1_v Line | Count | Source | 188 | 262 | static PerRequestCache makeEmpty() { | 189 | 262 | using Map = | 190 | 262 | llvm::DenseMap<RequestKey<Request>, | 191 | 262 | typename Request::OutputType>; | 192 | 262 | return PerRequestCache(new Map(), | 193 | 262 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 262 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_18EnumRawTypeRequestEEES1_v Line | Count | Source | 188 | 220 | static PerRequestCache makeEmpty() { | 189 | 220 | using Map = | 190 | 220 | llvm::DenseMap<RequestKey<Request>, | 191 | 220 | typename Request::OutputType>; | 192 | 220 | return PerRequestCache(new Map(), | 193 | 220 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 220 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24HasMemberwiseInitRequestEEES1_v Line | Count | Source | 188 | 117 | static PerRequestCache makeEmpty() { | 189 | 117 | using Map = | 190 | 117 | llvm::DenseMap<RequestKey<Request>, | 191 | 117 | typename Request::OutputType>; | 192 | 117 | return PerRequestCache(new Map(), | 193 | 117 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 117 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31SynthesizeMemberwiseInitRequestEEES1_v Line | Count | Source | 188 | 74 | static PerRequestCache makeEmpty() { | 189 | 74 | using Map = | 190 | 74 | llvm::DenseMap<RequestKey<Request>, | 191 | 74 | typename Request::OutputType>; | 192 | 74 | return PerRequestCache(new Map(), | 193 | 74 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 74 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_37ResolveEffectiveMemberwiseInitRequestEEES1_v Line | Count | Source | 188 | 62 | static PerRequestCache makeEmpty() { | 189 | 62 | using Map = | 190 | 62 | llvm::DenseMap<RequestKey<Request>, | 191 | 62 | typename Request::OutputType>; | 192 | 62 | return PerRequestCache(new Map(), | 193 | 62 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 62 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21HasDefaultInitRequestEEES1_v Line | Count | Source | 188 | 120 | static PerRequestCache makeEmpty() { | 189 | 120 | using Map = | 190 | 120 | llvm::DenseMap<RequestKey<Request>, | 191 | 120 | typename Request::OutputType>; | 192 | 120 | return PerRequestCache(new Map(), | 193 | 120 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 120 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28SynthesizeDefaultInitRequestEEES1_v Line | Count | Source | 188 | 75 | static PerRequestCache makeEmpty() { | 189 | 75 | using Map = | 190 | 75 | llvm::DenseMap<RequestKey<Request>, | 191 | 75 | typename Request::OutputType>; | 192 | 75 | return PerRequestCache(new Map(), | 193 | 75 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 75 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26GlobalActorInstanceRequestEEES1_v Line | Count | Source | 188 | 12 | static PerRequestCache makeEmpty() { | 189 | 12 | using Map = | 190 | 12 | llvm::DenseMap<RequestKey<Request>, | 191 | 12 | typename Request::OutputType>; | 192 | 12 | return PerRequestCache(new Map(), | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 12 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21IsDefaultActorRequestEEES1_v Line | Count | Source | 188 | 43 | static PerRequestCache makeEmpty() { | 189 | 43 | using Map = | 190 | 43 | llvm::DenseMap<RequestKey<Request>, | 191 | 43 | typename Request::OutputType>; | 192 | 43 | return PerRequestCache(new Map(), | 193 | 43 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 43 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ClassAncestryFlagsRequestEEES1_v Line | Count | Source | 188 | 118 | static PerRequestCache makeEmpty() { | 189 | 118 | using Map = | 190 | 118 | llvm::DenseMap<RequestKey<Request>, | 191 | 118 | typename Request::OutputType>; | 192 | 118 | return PerRequestCache(new Map(), | 193 | 118 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 118 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26HasCircularRawValueRequestEEES1_v Line | Count | Source | 188 | 67 | static PerRequestCache makeEmpty() { | 189 | 67 | using Map = | 190 | 67 | llvm::DenseMap<RequestKey<Request>, | 191 | 67 | typename Request::OutputType>; | 192 | 67 | return PerRequestCache(new Map(), | 193 | 67 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 67 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29PrimaryAssociatedTypesRequestEEES1_v Line | Count | Source | 188 | 48 | static PerRequestCache makeEmpty() { | 189 | 48 | using Map = | 190 | 48 | llvm::DenseMap<RequestKey<Request>, | 191 | 48 | typename Request::OutputType>; | 192 | 48 | return PerRequestCache(new Map(), | 193 | 48 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 48 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29StructuralRequirementsRequestEEES1_v Line | Count | Source | 188 | 82 | static PerRequestCache makeEmpty() { | 189 | 82 | using Map = | 190 | 82 | llvm::DenseMap<RequestKey<Request>, | 191 | 82 | typename Request::OutputType>; | 192 | 82 | return PerRequestCache(new Map(), | 193 | 82 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 82 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28TypeAliasRequirementsRequestEEES1_v Line | Count | Source | 188 | 82 | static PerRequestCache makeEmpty() { | 189 | 82 | using Map = | 190 | 82 | llvm::DenseMap<RequestKey<Request>, | 191 | 82 | typename Request::OutputType>; | 192 | 82 | return PerRequestCache(new Map(), | 193 | 82 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 82 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27ProtocolDependenciesRequestEEES1_v Line | Count | Source | 188 | 224 | static PerRequestCache makeEmpty() { | 189 | 224 | using Map = | 190 | 224 | llvm::DenseMap<RequestKey<Request>, | 191 | 224 | typename Request::OutputType>; | 192 | 224 | return PerRequestCache(new Map(), | 193 | 224 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 224 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_36HasCircularInheritedProtocolsRequestEEES1_v Line | Count | Source | 188 | 74 | static PerRequestCache makeEmpty() { | 189 | 74 | using Map = | 190 | 74 | llvm::DenseMap<RequestKey<Request>, | 191 | 74 | typename Request::OutputType>; | 192 | 74 | return PerRequestCache(new Map(), | 193 | 74 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 74 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22HasInitAccessorRequestEEES1_v Line | Count | Source | 188 | 258 | static PerRequestCache makeEmpty() { | 189 | 258 | using Map = | 190 | 258 | llvm::DenseMap<RequestKey<Request>, | 191 | 258 | typename Request::OutputType>; | 192 | 258 | return PerRequestCache(new Map(), | 193 | 258 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 258 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27DefaultInitializerIsolationEEES1_v Line | Count | Source | 188 | 263 | static PerRequestCache makeEmpty() { | 189 | 263 | using Map = | 190 | 263 | llvm::DenseMap<RequestKey<Request>, | 191 | 263 | typename Request::OutputType>; | 192 | 263 | return PerRequestCache(new Map(), | 193 | 263 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 263 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31AttachedPropertyWrappersRequestEEES1_v Line | Count | Source | 188 | 238 | static PerRequestCache makeEmpty() { | 189 | 238 | using Map = | 190 | 238 | llvm::DenseMap<RequestKey<Request>, | 191 | 238 | typename Request::OutputType>; | 192 | 238 | return PerRequestCache(new Map(), | 193 | 238 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 238 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_34AttachedPropertyWrapperTypeRequestEEES1_v Line | Count | Source | 188 | 77 | static PerRequestCache makeEmpty() { | 189 | 77 | using Map = | 190 | 77 | llvm::DenseMap<RequestKey<Request>, | 191 | 77 | typename Request::OutputType>; | 192 | 77 | return PerRequestCache(new Map(), | 193 | 77 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 77 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_41PropertyWrapperBackingPropertyTypeRequestEEES1_v Line | Count | Source | 188 | 77 | static PerRequestCache makeEmpty() { | 189 | 77 | using Map = | 190 | 77 | llvm::DenseMap<RequestKey<Request>, | 191 | 77 | typename Request::OutputType>; | 192 | 77 | return PerRequestCache(new Map(), | 193 | 77 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 77 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_40PropertyWrapperAuxiliaryVariablesRequestEEES1_v Line | Count | Source | 188 | 209 | static PerRequestCache makeEmpty() { | 189 | 209 | using Map = | 190 | 209 | llvm::DenseMap<RequestKey<Request>, | 191 | 209 | typename Request::OutputType>; | 192 | 209 | return PerRequestCache(new Map(), | 193 | 209 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 209 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_37PropertyWrapperInitializerInfoRequestEEES1_v Line | Count | Source | 188 | 201 | static PerRequestCache makeEmpty() { | 189 | 201 | using Map = | 190 | 201 | llvm::DenseMap<RequestKey<Request>, | 191 | 201 | typename Request::OutputType>; | 192 | 201 | return PerRequestCache(new Map(), | 193 | 201 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 201 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_32PropertyWrapperMutabilityRequestEEES1_v Line | Count | Source | 188 | 202 | static PerRequestCache makeEmpty() { | 189 | 202 | using Map = | 190 | 202 | llvm::DenseMap<RequestKey<Request>, | 191 | 202 | typename Request::OutputType>; | 192 | 202 | return PerRequestCache(new Map(), | 193 | 202 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 202 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26LazyStoragePropertyRequestEEES1_v Line | Count | Source | 188 | 3 | static PerRequestCache makeEmpty() { | 189 | 3 | using Map = | 190 | 3 | llvm::DenseMap<RequestKey<Request>, | 191 | 3 | typename Request::OutputType>; | 192 | 3 | return PerRequestCache(new Map(), | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 3 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24ResultBuilderTypeRequestEEES1_v Line | Count | Source | 188 | 197 | static PerRequestCache makeEmpty() { | 189 | 197 | using Map = | 190 | 197 | llvm::DenseMap<RequestKey<Request>, | 191 | 197 | typename Request::OutputType>; | 192 | 197 | return PerRequestCache(new Map(), | 193 | 197 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 197 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28AttachedResultBuilderRequestEEES1_v Line | Count | Source | 188 | 223 | static PerRequestCache makeEmpty() { | 189 | 223 | using Map = | 190 | 223 | llvm::DenseMap<RequestKey<Request>, | 191 | 223 | typename Request::OutputType>; | 192 | 223 | return PerRequestCache(new Map(), | 193 | 223 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 223 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_18RenamedDeclRequestEEES1_v Line | Count | Source | 188 | 6 | static PerRequestCache makeEmpty() { | 189 | 6 | using Map = | 190 | 6 | llvm::DenseMap<RequestKey<Request>, | 191 | 6 | typename Request::OutputType>; | 192 | 6 | return PerRequestCache(new Map(), | 193 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 6 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_23FunctionOperatorRequestEEES1_v Line | Count | Source | 188 | 210 | static PerRequestCache makeEmpty() { | 189 | 210 | using Map = | 190 | 210 | llvm::DenseMap<RequestKey<Request>, | 191 | 210 | typename Request::OutputType>; | 192 | 210 | return PerRequestCache(new Map(), | 193 | 210 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 210 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_19SimpleDidSetRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_15InitKindRequestEEES1_v Line | Count | Source | 188 | 258 | static PerRequestCache makeEmpty() { | 189 | 258 | using Map = | 190 | 258 | llvm::DenseMap<RequestKey<Request>, | 191 | 258 | typename Request::OutputType>; | 192 | 258 | return PerRequestCache(new Map(), | 193 | 258 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 258 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_19BodyInitKindRequestEEES1_v Line | Count | Source | 188 | 117 | static PerRequestCache makeEmpty() { | 189 | 117 | using Map = | 190 | 117 | llvm::DenseMap<RequestKey<Request>, | 191 | 117 | typename Request::OutputType>; | 192 | 117 | return PerRequestCache(new Map(), | 193 | 117 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 117 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30OperatorPrecedenceGroupRequestEEES1_v Line | Count | Source | 188 | 210 | static PerRequestCache makeEmpty() { | 189 | 210 | using Map = | 190 | 210 | llvm::DenseMap<RequestKey<Request>, | 191 | 210 | typename Request::OutputType>; | 192 | 210 | return PerRequestCache(new Map(), | 193 | 210 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 210 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ActorIsolationRequestEEES1_v Line | Count | Source | 188 | 224 | static PerRequestCache makeEmpty() { | 189 | 224 | using Map = | 190 | 224 | llvm::DenseMap<RequestKey<Request>, | 191 | 224 | typename Request::OutputType>; | 192 | 224 | return PerRequestCache(new Map(), | 193 | 224 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 224 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31ExpandMacroExpansionExprRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22MacroDefinitionRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26FragileFunctionKindRequestEEES1_v Line | Count | Source | 188 | 224 | static PerRequestCache makeEmpty() { | 189 | 224 | using Map = | 190 | 224 | llvm::DenseMap<RequestKey<Request>, | 191 | 224 | typename Request::OutputType>; | 192 | 224 | return PerRequestCache(new Map(), | 193 | 224 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 224 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_19ParseMembersRequestEEES1_v Line | Count | Source | 188 | 177 | static PerRequestCache makeEmpty() { | 189 | 177 | using Map = | 190 | 177 | llvm::DenseMap<RequestKey<Request>, | 191 | 177 | typename Request::OutputType>; | 192 | 177 | return PerRequestCache(new Map(), | 193 | 177 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 177 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_17ABIMembersRequestEEES1_v Line | Count | Source | 188 | 174 | static PerRequestCache makeEmpty() { | 189 | 174 | using Map = | 190 | 174 | llvm::DenseMap<RequestKey<Request>, | 191 | 174 | typename Request::OutputType>; | 192 | 174 | return PerRequestCache(new Map(), | 193 | 174 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 174 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_17AllMembersRequestEEES1_v Line | Count | Source | 188 | 138 | static PerRequestCache makeEmpty() { | 189 | 138 | using Map = | 190 | 138 | llvm::DenseMap<RequestKey<Request>, | 191 | 138 | typename Request::OutputType>; | 192 | 138 | return PerRequestCache(new Map(), | 193 | 138 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 138 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_48GetDistributedActorArgumentDecodingMethodRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_43GetDistributedActorInvocationDecoderRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26GetDistributedThunkRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_40GetDistributedActorSystemPropertyRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_36GetDistributedActorIDPropertyRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27SemanticBriefCommentRequestEEES1_v Line | Count | Source | 188 | 19 | static PerRequestCache makeEmpty() { | 189 | 19 | using Map = | 190 | 19 | llvm::DenseMap<RequestKey<Request>, | 191 | 19 | typename Request::OutputType>; | 192 | 19 | return PerRequestCache(new Map(), | 193 | 19 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 19 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_36PolymorphicEffectRequirementsRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28PolymorphicEffectKindRequestEEES1_v Line | Count | Source | 188 | 184 | static PerRequestCache makeEmpty() { | 189 | 184 | using Map = | 190 | 184 | llvm::DenseMap<RequestKey<Request>, | 191 | 184 | typename Request::OutputType>; | 192 | 184 | return PerRequestCache(new Map(), | 193 | 184 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 184 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27ConformanceHasEffectRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ClosureEffectsRequestEEES1_v Line | Count | Source | 188 | 117 | static PerRequestCache makeEmpty() { | 189 | 117 | using Map = | 190 | 117 | llvm::DenseMap<RequestKey<Request>, | 191 | 117 | typename Request::OutputType>; | 192 | 117 | return PerRequestCache(new Map(), | 193 | 117 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 117 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31AbstractGenericSignatureRequestEEES1_v Line | Count | Source | 188 | 172 | static PerRequestCache makeEmpty() { | 189 | 172 | using Map = | 190 | 172 | llvm::DenseMap<RequestKey<Request>, | 191 | 172 | typename Request::OutputType>; | 192 | 172 | return PerRequestCache(new Map(), | 193 | 172 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 172 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22IsNonUserModuleRequestEEES1_v Line | Count | Source | 188 | 11 | static PerRequestCache makeEmpty() { | 189 | 11 | using Map = | 190 | 11 | llvm::DenseMap<RequestKey<Request>, | 191 | 11 | typename Request::OutputType>; | 192 | 11 | return PerRequestCache(new Map(), | 193 | 11 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 11 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28ModuleImplicitImportsRequestEEES1_v Line | Count | Source | 188 | 268 | static PerRequestCache makeEmpty() { | 189 | 268 | using Map = | 190 | 268 | llvm::DenseMap<RequestKey<Request>, | 191 | 268 | typename Request::OutputType>; | 192 | 268 | return PerRequestCache(new Map(), | 193 | 268 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 268 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25PrimarySourceFilesRequestEEES1_v Line | Count | Source | 188 | 210 | static PerRequestCache makeEmpty() { | 189 | 210 | using Map = | 190 | 210 | llvm::DenseMap<RequestKey<Request>, | 191 | 210 | typename Request::OutputType>; | 192 | 210 | return PerRequestCache(new Map(), | 193 | 210 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 210 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26MangleLocalTypeDeclRequestEEES1_v Line | Count | Source | 188 | 3 | static PerRequestCache makeEmpty() { | 189 | 3 | using Map = | 190 | 3 | llvm::DenseMap<RequestKey<Request>, | 191 | 3 | typename Request::OutputType>; | 192 | 3 | return PerRequestCache(new Map(), | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 3 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ExpandExtensionMacrosEEES1_v Line | Count | Source | 188 | 246 | static PerRequestCache makeEmpty() { | 189 | 246 | using Map = | 190 | 246 | llvm::DenseMap<RequestKey<Request>, | 191 | 246 | typename Request::OutputType>; | 192 | 246 | return PerRequestCache(new Map(), | 193 | 246 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 246 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_39ImplicitKnownProtocolConformanceRequestEEES1_v Line | Count | Source | 188 | 185 | static PerRequestCache makeEmpty() { | 189 | 185 | using Map = | 190 | 185 | llvm::DenseMap<RequestKey<Request>, | 191 | 185 | typename Request::OutputType>; | 192 | 185 | return PerRequestCache(new Map(), | 193 | 185 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 185 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_41GetDistributedActorImplicitCodableRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_16SPIGroupsRequestEEES1_v Line | Count | Source | 188 | 235 | static PerRequestCache makeEmpty() { | 189 | 235 | using Map = | 190 | 235 | llvm::DenseMap<RequestKey<Request>, | 191 | 235 | typename Request::OutputType>; | 192 | 235 | return PerRequestCache(new Map(), | 193 | 235 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 235 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ModuleLibraryLevelRequestEEES1_v Line | Count | Source | 188 | 78 | static PerRequestCache makeEmpty() { | 189 | 78 | using Map = | 190 | 78 | llvm::DenseMap<RequestKey<Request>, | 191 | 78 | typename Request::OutputType>; | 192 | 78 | return PerRequestCache(new Map(), | 193 | 78 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 78 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ParseTopLevelDeclsRequestEEES1_v Line | Count | Source | 188 | 256 | static PerRequestCache makeEmpty() { | 189 | 256 | using Map = | 190 | 256 | llvm::DenseMap<RequestKey<Request>, | 191 | 256 | typename Request::OutputType>; | 192 | 256 | return PerRequestCache(new Map(), | 193 | 256 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 256 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ExportedSourceFileRequestEEES1_v Line | Count | Source | 188 | 240 | static PerRequestCache makeEmpty() { | 189 | 240 | using Map = | 190 | 240 | llvm::DenseMap<RequestKey<Request>, | 191 | 240 | typename Request::OutputType>; | 192 | 240 | return PerRequestCache(new Map(), | 193 | 240 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 240 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22GetSourceFileAsyncNodeEEES1_v Line | Count | Source | 188 | 100 | static PerRequestCache makeEmpty() { | 189 | 100 | using Map = | 190 | 100 | llvm::DenseMap<RequestKey<Request>, | 191 | 100 | typename Request::OutputType>; | 192 | 100 | return PerRequestCache(new Map(), | 193 | 100 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 100 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_35ExpandSynthesizedMemberMacroRequestEEES1_v Line | Count | Source | 188 | 171 | static PerRequestCache makeEmpty() { | 189 | 171 | using Map = | 190 | 171 | llvm::DenseMap<RequestKey<Request>, | 191 | 171 | typename Request::OutputType>; | 192 | 171 | return PerRequestCache(new Map(), | 193 | 171 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 171 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_40PotentialMacroExpansionsInContextRequestEEES1_v Line | Count | Source | 188 | 252 | static PerRequestCache makeEmpty() { | 189 | 252 | using Map = | 190 | 252 | llvm::DenseMap<RequestKey<Request>, | 191 | 252 | typename Request::OutputType>; | 192 | 252 | return PerRequestCache(new Map(), | 193 | 252 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 252 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30IsCallAsFunctionNominalRequestEEES1_v Line | Count | Source | 188 | 21 | static PerRequestCache makeEmpty() { | 189 | 21 | using Map = | 190 | 21 | llvm::DenseMap<RequestKey<Request>, | 191 | 21 | typename Request::OutputType>; | 192 | 21 | return PerRequestCache(new Map(), | 193 | 21 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 21 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_38HasDynamicMemberLookupAttributeRequestEEES1_v Line | Count | Source | 188 | 151 | static PerRequestCache makeEmpty() { | 189 | 151 | using Map = | 190 | 151 | llvm::DenseMap<RequestKey<Request>, | 191 | 151 | typename Request::OutputType>; | 192 | 151 | return PerRequestCache(new Map(), | 193 | 151 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 151 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_34HasDynamicCallableAttributeRequestEEES1_v Line | Count | Source | 188 | 13 | static PerRequestCache makeEmpty() { | 189 | 13 | using Map = | 190 | 13 | llvm::DenseMap<RequestKey<Request>, | 191 | 13 | typename Request::OutputType>; | 192 | 13 | return PerRequestCache(new Map(), | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 13 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26LookupInfixOperatorRequestEEES1_v Line | Count | Source | 188 | 162 | static PerRequestCache makeEmpty() { | 189 | 162 | using Map = | 190 | 162 | llvm::DenseMap<RequestKey<Request>, | 191 | 162 | typename Request::OutputType>; | 192 | 162 | return PerRequestCache(new Map(), | 193 | 162 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 162 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27LookupPrefixOperatorRequestEEES1_v Line | Count | Source | 188 | 6 | static PerRequestCache makeEmpty() { | 189 | 6 | using Map = | 190 | 6 | llvm::DenseMap<RequestKey<Request>, | 191 | 6 | typename Request::OutputType>; | 192 | 6 | return PerRequestCache(new Map(), | 193 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28LookupPostfixOperatorRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28LookupPrecedenceGroupRequestEEES1_v Line | Count | Source | 188 | 113 | static PerRequestCache makeEmpty() { | 189 | 113 | using Map = | 190 | 113 | llvm::DenseMap<RequestKey<Request>, | 191 | 113 | typename Request::OutputType>; | 192 | 113 | return PerRequestCache(new Map(), | 193 | 113 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 113 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30ConditionalRequirementsRequestEEES1_v Line | Count | Source | 188 | 215 | static PerRequestCache makeEmpty() { | 189 | 215 | using Map = | 190 | 215 | llvm::DenseMap<RequestKey<Request>, | 191 | 215 | typename Request::OutputType>; | 192 | 215 | return PerRequestCache(new Map(), | 193 | 215 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 215 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_37LookupAllConformancesInContextRequestEEES1_v Line | Count | Source | 188 | 195 | static PerRequestCache makeEmpty() { | 189 | 195 | using Map = | 190 | 195 | llvm::DenseMap<RequestKey<Request>, | 191 | 195 | typename Request::OutputType>; | 192 | 195 | return PerRequestCache(new Map(), | 193 | 195 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 195 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_17RawCommentRequestEEES1_v Line | Count | Source | 188 | 32 | static PerRequestCache makeEmpty() { | 189 | 32 | using Map = | 190 | 32 | llvm::DenseMap<RequestKey<Request>, | 191 | 32 | typename Request::OutputType>; | 192 | 32 | return PerRequestCache(new Map(), | 193 | 32 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 32 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24IsSingleValueStmtRequestEEES1_v Line | Count | Source | 188 | 172 | static PerRequestCache makeEmpty() { | 189 | 172 | using Map = | 190 | 172 | llvm::DenseMap<RequestKey<Request>, | 191 | 172 | typename Request::OutputType>; | 192 | 172 | return PerRequestCache(new Map(), | 193 | 172 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 172 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_18BreakTargetRequestEEES1_v Line | Count | Source | 188 | 14 | static PerRequestCache makeEmpty() { | 189 | 14 | using Map = | 190 | 14 | llvm::DenseMap<RequestKey<Request>, | 191 | 14 | typename Request::OutputType>; | 192 | 14 | return PerRequestCache(new Map(), | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 14 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ContinueTargetRequestEEES1_v Line | Count | Source | 188 | 12 | static PerRequestCache makeEmpty() { | 189 | 12 | using Map = | 190 | 12 | llvm::DenseMap<RequestKey<Request>, | 191 | 12 | typename Request::OutputType>; | 192 | 12 | return PerRequestCache(new Map(), | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 12 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_20IsNoncopyableRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_18RequirementRequestEEES1_v Line | Count | Source | 188 | 111 | static PerRequestCache makeEmpty() { | 189 | 111 | using Map = | 190 | 111 | llvm::DenseMap<RequestKey<Request>, | 191 | 111 | typename Request::OutputType>; | 192 | 111 | return PerRequestCache(new Map(), | 193 | 111 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 111 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_40ExpandChildTypeRefinementContextsRequestEEES1_v Line | Count | Source | 188 | 187 | static PerRequestCache makeEmpty() { | 189 | 187 | using Map = | 190 | 187 | llvm::DenseMap<RequestKey<Request>, | 191 | 187 | typename Request::OutputType>; | 192 | 187 | return PerRequestCache(new Map(), | 193 | 187 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 187 | } |
|
195 | | |
196 | | template <typename Request> |
197 | | llvm::DenseMap<RequestKey<Request>, |
198 | | typename Request::OutputType> * |
199 | 54.0M | get() const { |
200 | 54.0M | using Map = |
201 | 54.0M | llvm::DenseMap<RequestKey<Request>, |
202 | 54.0M | typename Request::OutputType>; |
203 | 54.0M | assert(Storage); |
204 | 0 | return static_cast<Map *>(Storage); |
205 | 54.0M | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22SymbolSourceMapRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv ClangSyntaxPrinter.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_20USRGenerationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 52.9k | get() const { | 200 | 52.9k | using Map = | 201 | 52.9k | llvm::DenseMap<RequestKey<Request>, | 202 | 52.9k | typename Request::OutputType>; | 203 | 52.9k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 52.9k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_18RenamedDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Frontend.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24IDEInspectionFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ConstExtract.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24ConstantValueInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: GenClass.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: GenDistributed.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: GenDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: GenEnum.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: GenHeap.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: GenMeta.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IRGen.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22SymbolSourceMapRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Common.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28TangentStoredPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.05k | get() const { | 200 | 2.05k | using Map = | 201 | 2.05k | llvm::DenseMap<RequestKey<Request>, | 202 | 2.05k | typename Request::OutputType>; | 203 | 2.05k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.05k | } |
Unexecuted instantiation: IDERequests.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28ProvideDefaultImplForRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26ResolveProtocolNameRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28ProvideDefaultImplForRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29CollectOverriddenDeclsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23IsDeclApplicableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24TypeRelationCheckRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_15InitKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23OpaqueResultTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LazyStoragePropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40PropertyWrapperAuxiliaryVariablesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_37PropertyWrapperInitializerInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_41PropertyWrapperBackingPropertyTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27DefaultInitializerIsolationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23FunctionOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30OperatorPrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22MacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17HasStorageRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Serialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26MangleLocalTypeDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: BuilderTransform.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28PreCheckResultBuilderRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: CSApply.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31ExpandMacroExpansionExprRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv CSRanking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_32CompareDeclSpecializationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 104k | get() const { | 200 | 104k | using Map = | 201 | 104k | llvm::DenseMap<RequestKey<Request>, | 202 | 104k | typename Request::OutputType>; | 203 | 104k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 104k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29EnumElementExprPatternRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_34HasDynamicCallableAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv CSStep.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25IsDeclRefinementOfRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 21.1k | get() const { | 200 | 21.1k | using Map = | 201 | 21.1k | llvm::DenseMap<RequestKey<Request>, | 202 | 21.1k | typename Request::OutputType>; | 203 | 21.1k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 21.1k | } |
CodeSynthesis.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_35HasUserDefinedDesignatedInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 7.40k | get() const { | 200 | 7.40k | using Map = | 201 | 7.40k | llvm::DenseMap<RequestKey<Request>, | 202 | 7.40k | typename Request::OutputType>; | 203 | 7.40k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 7.40k | } |
CodeSynthesis.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_44AreAllStoredPropertiesDefaultInitableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.61k | get() const { | 200 | 2.61k | using Map = | 201 | 2.61k | llvm::DenseMap<RequestKey<Request>, | 202 | 2.61k | typename Request::OutputType>; | 203 | 2.61k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.61k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ClosureEffectsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv ConstraintSystem.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31ClosureHasExplicitResultRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.37k | get() const { | 200 | 2.37k | using Map = | 201 | 2.37k | llvm::DenseMap<RequestKey<Request>, | 202 | 2.37k | typename Request::OutputType>; | 203 | 2.37k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.37k | } |
DerivedConformanceDifferentiable.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28TangentStoredPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 457 | get() const { | 200 | 457 | using Map = | 201 | 457 | llvm::DenseMap<RequestKey<Request>, | 202 | 457 | typename Request::OutputType>; | 203 | 457 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 457 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23IsDeclApplicableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: PreCheckExpr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25PreCheckReturnStmtRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29SynthesizeMainFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28IsCCompatibleFuncDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24ResolveMacroConformancesEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31InferredGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27GlobalActorAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27GlobalActorAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckDistributed.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_35DistributedModuleIsAvailableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 72 | get() const { | 200 | 72 | using Map = | 201 | 72 | llvm::DenseMap<RequestKey<Request>, | 202 | 72 | typename Request::OutputType>; | 203 | 72 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 72 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31CheckDistributedFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30ValidatePrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 11.3k | get() const { | 200 | 11.3k | using Map = | 201 | 11.3k | llvm::DenseMap<RequestKey<Request>, | 202 | 11.3k | typename Request::OutputType>; | 203 | 11.3k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 11.3k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_35ExpandSynthesizedMemberMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29SynthesizeMainFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 35.1k | get() const { | 200 | 35.1k | using Map = | 201 | 35.1k | llvm::DenseMap<RequestKey<Request>, | 202 | 35.1k | typename Request::OutputType>; | 203 | 35.1k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 35.1k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_36HasCircularInheritedProtocolsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26HasCircularRawValueRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30IsABICompatibleOverrideRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_34TypeCheckObjCImplementationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30ExternalMacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ExpandExtensionMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22ApplyAccessNoteRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 801k | get() const { | 200 | 801k | using Map = | 201 | 801k | llvm::DenseMap<RequestKey<Request>, | 202 | 801k | typename Request::OutputType>; | 203 | 801k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 801k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ResolveMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckGeneric.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31InferredGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckMacros.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30ExternalMacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 36 | get() const { | 200 | 36 | using Map = | 201 | 36 | llvm::DenseMap<RequestKey<Request>, | 202 | 36 | typename Request::OutputType>; | 203 | 36 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 36 | } |
TypeCheckMacros.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25CompilerPluginLoadRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 28 | get() const { | 200 | 28 | using Map = | 201 | 28 | llvm::DenseMap<RequestKey<Request>, | 202 | 28 | typename Request::OutputType>; | 203 | 28 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 28 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31ExpandMacroExpansionDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckPattern.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_18PatternTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 94.2k | get() const { | 200 | 94.2k | using Map = | 201 | 94.2k | llvm::DenseMap<RequestKey<Request>, | 202 | 94.2k | typename Request::OutputType>; | 203 | 94.2k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 94.2k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31AttachedPropertyWrappersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40PotentialMacroExpansionsInContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 7.05k | get() const { | 200 | 7.05k | using Map = | 201 | 7.05k | llvm::DenseMap<RequestKey<Request>, | 202 | 7.05k | typename Request::OutputType>; | 203 | 7.05k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 7.05k | } |
TypeCheckStmt.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25PreCheckReturnStmtRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 60.7k | get() const { | 200 | 60.7k | using Map = | 201 | 60.7k | llvm::DenseMap<RequestKey<Request>, | 202 | 60.7k | typename Request::OutputType>; | 203 | 60.7k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 60.7k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_35ExpandSynthesizedMemberMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22ExpandPeerMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckStorage.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_32PropertyWrapperLValuenessRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 298 | get() const { | 200 | 298 | using Map = | 201 | 298 | llvm::DenseMap<RequestKey<Request>, | 202 | 298 | typename Request::OutputType>; | 203 | 298 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 298 | } |
TypeCheckStorage.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_20ExpandAccessorMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 84.2k | get() const { | 200 | 84.2k | using Map = | 201 | 84.2k | llvm::DenseMap<RequestKey<Request>, | 202 | 84.2k | typename Request::OutputType>; | 203 | 84.2k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 84.2k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40PropertyWrapperAuxiliaryVariablesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeChecker.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_49CheckInconsistentImplementationOnlyImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.90k | get() const { | 200 | 1.90k | using Map = | 201 | 1.90k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.90k | typename Request::OutputType>; | 203 | 1.90k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.90k | } |
TypeChecker.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_38CheckInconsistentSPIOnlyImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.48k | get() const { | 200 | 2.48k | using Map = | 201 | 2.48k | llvm::DenseMap<RequestKey<Request>, | 202 | 2.48k | typename Request::OutputType>; | 203 | 2.48k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.48k | } |
TypeChecker.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_36CheckInconsistentAccessLevelOnImportEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.48k | get() const { | 200 | 2.48k | using Map = | 201 | 2.48k | llvm::DenseMap<RequestKey<Request>, | 202 | 2.48k | typename Request::OutputType>; | 203 | 2.48k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.48k | } |
TypeChecker.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_41CheckInconsistentWeakLinkedImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.90k | get() const { | 200 | 1.90k | using Map = | 201 | 1.90k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.90k | typename Request::OutputType>; | 203 | 1.90k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.90k | } |
TypeChecker.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31InferredGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 23.9k | get() const { | 200 | 23.9k | using Map = | 201 | 23.9k | llvm::DenseMap<RequestKey<Request>, | 202 | 23.9k | typename Request::OutputType>; | 203 | 23.9k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 23.9k | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv ClangImporter.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17HasStorageRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 99.1k | get() const { | 200 | 99.1k | using Map = | 201 | 99.1k | llvm::DenseMap<RequestKey<Request>, | 202 | 99.1k | typename Request::OutputType>; | 203 | 99.1k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 99.1k | } |
Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_15InitKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17HasStorageRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ParseDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ParseMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Parser.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv ASTContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 97.2k | get() const { | 200 | 97.2k | using Map = | 201 | 97.2k | llvm::DenseMap<RequestKey<Request>, | 202 | 97.2k | typename Request::OutputType>; | 203 | 97.2k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 97.2k | } |
ASTContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 12 | get() const { | 200 | 12 | using Map = | 201 | 12 | llvm::DenseMap<RequestKey<Request>, | 202 | 12 | typename Request::OutputType>; | 203 | 12 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 12 | } |
ASTContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 12 | get() const { | 200 | 12 | using Map = | 201 | 12 | llvm::DenseMap<RequestKey<Request>, | 202 | 12 | typename Request::OutputType>; | 203 | 12 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 12 | } |
Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv ASTContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 12 | get() const { | 200 | 12 | using Map = | 201 | 12 | llvm::DenseMap<RequestKey<Request>, | 202 | 12 | typename Request::OutputType>; | 203 | 12 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 12 | } |
ASTContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 22 | get() const { | 200 | 22 | using Map = | 201 | 22 | llvm::DenseMap<RequestKey<Request>, | 202 | 22 | typename Request::OutputType>; | 203 | 22 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 22 | } |
Attr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24ResolveMacroConformancesEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 104 | get() const { | 200 | 104 | using Map = | 201 | 104 | llvm::DenseMap<RequestKey<Request>, | 202 | 104 | typename Request::OutputType>; | 203 | 104 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 104 | } |
Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30TypeEraserHasViableInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Attr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31SpecializeAttrTargetDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 9.32k | get() const { | 200 | 9.32k | using Map = | 201 | 9.32k | llvm::DenseMap<RequestKey<Request>, | 202 | 9.32k | typename Request::OutputType>; | 203 | 9.32k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 9.32k | } |
Attr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_33DerivativeAttrOriginalDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 6.61k | get() const { | 200 | 6.61k | using Map = | 201 | 6.61k | llvm::DenseMap<RequestKey<Request>, | 202 | 6.61k | typename Request::OutputType>; | 203 | 6.61k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 6.61k | } |
Attr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29ImplementsAttrProtocolRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 771 | get() const { | 200 | 771 | using Map = | 201 | 771 | llvm::DenseMap<RequestKey<Request>, | 202 | 771 | typename Request::OutputType>; | 203 | 771 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 771 | } |
Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_38InitAccessorReferencedVariablesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Availability.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_33SemanticAvailableRangeAttrRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.44k | get() const { | 200 | 2.44k | using Map = | 201 | 2.44k | llvm::DenseMap<RequestKey<Request>, | 202 | 2.44k | typename Request::OutputType>; | 203 | 2.44k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.44k | } |
Availability.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30SemanticUnavailableAttrRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 548k | get() const { | 200 | 548k | using Map = | 201 | 548k | llvm::DenseMap<RequestKey<Request>, | 202 | 548k | typename Request::OutputType>; | 203 | 548k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 548k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ParseMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27ExpandMemberAttributeMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.81M | get() const { | 200 | 2.81M | using Map = | 201 | 2.81M | llvm::DenseMap<RequestKey<Request>, | 202 | 2.81M | typename Request::OutputType>; | 203 | 2.81M | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.81M | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22ExpandPeerMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.08M | get() const { | 200 | 1.08M | using Map = | 201 | 1.08M | llvm::DenseMap<RequestKey<Request>, | 202 | 1.08M | typename Request::OutputType>; | 203 | 1.08M | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.08M | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31ExpandMacroExpansionDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ResolveMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.49k | get() const { | 200 | 1.49k | using Map = | 201 | 1.49k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.49k | typename Request::OutputType>; | 203 | 1.49k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.49k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27GlobalActorAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 6.53M | get() const { | 200 | 6.53M | using Map = | 201 | 6.53M | llvm::DenseMap<RequestKey<Request>, | 202 | 6.53M | typename Request::OutputType>; | 203 | 6.53M | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 6.53M | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25ScopedImportLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 66.3k | get() const { | 200 | 66.3k | using Map = | 201 | 66.3k | llvm::DenseMap<RequestKey<Request>, | 202 | 66.3k | typename Request::OutputType>; | 203 | 66.3k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 66.3k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30IsABICompatibleOverrideRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 27.1k | get() const { | 200 | 27.1k | using Map = | 201 | 27.1k | llvm::DenseMap<RequestKey<Request>, | 202 | 27.1k | typename Request::OutputType>; | 203 | 27.1k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 27.1k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 46.2k | get() const { | 200 | 46.2k | using Map = | 201 | 46.2k | llvm::DenseMap<RequestKey<Request>, | 202 | 46.2k | typename Request::OutputType>; | 203 | 46.2k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 46.2k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23OpaqueResultTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 32 | get() const { | 200 | 32 | using Map = | 201 | 32 | llvm::DenseMap<RequestKey<Request>, | 202 | 32 | typename Request::OutputType>; | 203 | 32 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 32 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30DynamicallyReplacedDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 680k | get() const { | 200 | 680k | using Map = | 201 | 680k | llvm::DenseMap<RequestKey<Request>, | 202 | 680k | typename Request::OutputType>; | 203 | 680k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 680k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23StoredPropertiesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 11.8M | get() const { | 200 | 11.8M | using Map = | 201 | 11.8M | llvm::DenseMap<RequestKey<Request>, | 202 | 11.8M | typename Request::OutputType>; | 203 | 11.8M | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 11.8M | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29InitAccessorPropertiesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 7.75k | get() const { | 200 | 7.75k | using Map = | 201 | 7.75k | llvm::DenseMap<RequestKey<Request>, | 202 | 7.75k | typename Request::OutputType>; | 203 | 7.75k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 7.75k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31MemberwiseInitPropertiesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 5.10k | get() const { | 200 | 5.10k | using Map = | 201 | 5.10k | llvm::DenseMap<RequestKey<Request>, | 202 | 5.10k | typename Request::OutputType>; | 203 | 5.10k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 5.10k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40StoredPropertiesAndMissingMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 11.0k | get() const { | 200 | 11.0k | using Map = | 201 | 11.0k | llvm::DenseMap<RequestKey<Request>, | 202 | 11.0k | typename Request::OutputType>; | 203 | 11.0k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 11.0k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30PropertyWrapperTypeInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.49k | get() const { | 200 | 2.49k | using Map = | 201 | 2.49k | llvm::DenseMap<RequestKey<Request>, | 202 | 2.49k | typename Request::OutputType>; | 203 | 2.49k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.49k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_14IsActorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.87M | get() const { | 200 | 2.87M | using Map = | 201 | 2.87M | llvm::DenseMap<RequestKey<Request>, | 202 | 2.87M | typename Request::OutputType>; | 203 | 2.87M | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.87M | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25IsDistributedActorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 776k | get() const { | 200 | 776k | using Map = | 201 | 776k | llvm::DenseMap<RequestKey<Request>, | 202 | 776k | typename Request::OutputType>; | 203 | 776k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 776k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21StructuralTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 28.8k | get() const { | 200 | 28.8k | using Map = | 201 | 28.8k | llvm::DenseMap<RequestKey<Request>, | 202 | 28.8k | typename Request::OutputType>; | 203 | 28.8k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 28.8k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_18EnumRawTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 30.2k | get() const { | 200 | 30.2k | using Map = | 201 | 30.2k | llvm::DenseMap<RequestKey<Request>, | 202 | 30.2k | typename Request::OutputType>; | 203 | 30.2k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 30.2k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24HasMemberwiseInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 4.60k | get() const { | 200 | 4.60k | using Map = | 201 | 4.60k | llvm::DenseMap<RequestKey<Request>, | 202 | 4.60k | typename Request::OutputType>; | 203 | 4.60k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 4.60k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31SynthesizeMemberwiseInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.10k | get() const { | 200 | 2.10k | using Map = | 201 | 2.10k | llvm::DenseMap<RequestKey<Request>, | 202 | 2.10k | typename Request::OutputType>; | 203 | 2.10k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.10k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_37ResolveEffectiveMemberwiseInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 3.43k | get() const { | 200 | 3.43k | using Map = | 201 | 3.43k | llvm::DenseMap<RequestKey<Request>, | 202 | 3.43k | typename Request::OutputType>; | 203 | 3.43k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 3.43k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21HasDefaultInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 4.62k | get() const { | 200 | 4.62k | using Map = | 201 | 4.62k | llvm::DenseMap<RequestKey<Request>, | 202 | 4.62k | typename Request::OutputType>; | 203 | 4.62k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 4.62k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28SynthesizeDefaultInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 945 | get() const { | 200 | 945 | using Map = | 201 | 945 | llvm::DenseMap<RequestKey<Request>, | 202 | 945 | typename Request::OutputType>; | 203 | 945 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 945 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26GlobalActorInstanceRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 248 | get() const { | 200 | 248 | using Map = | 201 | 248 | llvm::DenseMap<RequestKey<Request>, | 202 | 248 | typename Request::OutputType>; | 203 | 248 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 248 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21IsDefaultActorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 8.88k | get() const { | 200 | 8.88k | using Map = | 201 | 8.88k | llvm::DenseMap<RequestKey<Request>, | 202 | 8.88k | typename Request::OutputType>; | 203 | 8.88k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 8.88k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25ClassAncestryFlagsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 29.9k | get() const { | 200 | 29.9k | using Map = | 201 | 29.9k | llvm::DenseMap<RequestKey<Request>, | 202 | 29.9k | typename Request::OutputType>; | 203 | 29.9k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 29.9k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26HasCircularRawValueRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.02k | get() const { | 200 | 2.02k | using Map = | 201 | 2.02k | llvm::DenseMap<RequestKey<Request>, | 202 | 2.02k | typename Request::OutputType>; | 203 | 2.02k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.02k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29PrimaryAssociatedTypesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 13.7k | get() const { | 200 | 13.7k | using Map = | 201 | 13.7k | llvm::DenseMap<RequestKey<Request>, | 202 | 13.7k | typename Request::OutputType>; | 203 | 13.7k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 13.7k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29StructuralRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.18k | get() const { | 200 | 2.18k | using Map = | 201 | 2.18k | llvm::DenseMap<RequestKey<Request>, | 202 | 2.18k | typename Request::OutputType>; | 203 | 2.18k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.18k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28TypeAliasRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.31k | get() const { | 200 | 1.31k | using Map = | 201 | 1.31k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.31k | typename Request::OutputType>; | 203 | 1.31k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.31k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27ProtocolDependenciesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 302k | get() const { | 200 | 302k | using Map = | 201 | 302k | llvm::DenseMap<RequestKey<Request>, | 202 | 302k | typename Request::OutputType>; | 203 | 302k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 302k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_36HasCircularInheritedProtocolsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.83k | get() const { | 200 | 1.83k | using Map = | 201 | 1.83k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.83k | typename Request::OutputType>; | 203 | 1.83k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.83k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17HasStorageRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.29M | get() const { | 200 | 2.29M | using Map = | 201 | 2.29M | llvm::DenseMap<RequestKey<Request>, | 202 | 2.29M | typename Request::OutputType>; | 203 | 2.29M | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.29M | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22HasInitAccessorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 568k | get() const { | 200 | 568k | using Map = | 201 | 568k | llvm::DenseMap<RequestKey<Request>, | 202 | 568k | typename Request::OutputType>; | 203 | 568k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 568k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27DefaultInitializerIsolationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 414k | get() const { | 200 | 414k | using Map = | 201 | 414k | llvm::DenseMap<RequestKey<Request>, | 202 | 414k | typename Request::OutputType>; | 203 | 414k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 414k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31AttachedPropertyWrappersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 6.12M | get() const { | 200 | 6.12M | using Map = | 201 | 6.12M | llvm::DenseMap<RequestKey<Request>, | 202 | 6.12M | typename Request::OutputType>; | 203 | 6.12M | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 6.12M | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_34AttachedPropertyWrapperTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 3.69k | get() const { | 200 | 3.69k | using Map = | 201 | 3.69k | llvm::DenseMap<RequestKey<Request>, | 202 | 3.69k | typename Request::OutputType>; | 203 | 3.69k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 3.69k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_41PropertyWrapperBackingPropertyTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 3.70k | get() const { | 200 | 3.70k | using Map = | 201 | 3.70k | llvm::DenseMap<RequestKey<Request>, | 202 | 3.70k | typename Request::OutputType>; | 203 | 3.70k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 3.70k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40PropertyWrapperAuxiliaryVariablesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 246k | get() const { | 200 | 246k | using Map = | 201 | 246k | llvm::DenseMap<RequestKey<Request>, | 202 | 246k | typename Request::OutputType>; | 203 | 246k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 246k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_37PropertyWrapperInitializerInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 74.1k | get() const { | 200 | 74.1k | using Map = | 201 | 74.1k | llvm::DenseMap<RequestKey<Request>, | 202 | 74.1k | typename Request::OutputType>; | 203 | 74.1k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 74.1k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_32PropertyWrapperMutabilityRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 113k | get() const { | 200 | 113k | using Map = | 201 | 113k | llvm::DenseMap<RequestKey<Request>, | 202 | 113k | typename Request::OutputType>; | 203 | 113k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 113k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LazyStoragePropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 37 | get() const { | 200 | 37 | using Map = | 201 | 37 | llvm::DenseMap<RequestKey<Request>, | 202 | 37 | typename Request::OutputType>; | 203 | 37 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 37 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24ResultBuilderTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 93.0k | get() const { | 200 | 93.0k | using Map = | 201 | 93.0k | llvm::DenseMap<RequestKey<Request>, | 202 | 93.0k | typename Request::OutputType>; | 203 | 93.0k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 93.0k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28AttachedResultBuilderRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 231k | get() const { | 200 | 231k | using Map = | 201 | 231k | llvm::DenseMap<RequestKey<Request>, | 202 | 231k | typename Request::OutputType>; | 203 | 231k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 231k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_18RenamedDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.00k | get() const { | 200 | 2.00k | using Map = | 201 | 2.00k | llvm::DenseMap<RequestKey<Request>, | 202 | 2.00k | typename Request::OutputType>; | 203 | 2.00k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.00k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23FunctionOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 71.9k | get() const { | 200 | 71.9k | using Map = | 201 | 71.9k | llvm::DenseMap<RequestKey<Request>, | 202 | 71.9k | typename Request::OutputType>; | 203 | 71.9k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 71.9k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19SimpleDidSetRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_15InitKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 135k | get() const { | 200 | 135k | using Map = | 201 | 135k | llvm::DenseMap<RequestKey<Request>, | 202 | 135k | typename Request::OutputType>; | 203 | 135k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 135k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19BodyInitKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 13.9k | get() const { | 200 | 13.9k | using Map = | 201 | 13.9k | llvm::DenseMap<RequestKey<Request>, | 202 | 13.9k | typename Request::OutputType>; | 203 | 13.9k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 13.9k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30OperatorPrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 21.4k | get() const { | 200 | 21.4k | using Map = | 201 | 21.4k | llvm::DenseMap<RequestKey<Request>, | 202 | 21.4k | typename Request::OutputType>; | 203 | 21.4k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 21.4k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ActorIsolationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 3.38M | get() const { | 200 | 3.38M | using Map = | 201 | 3.38M | llvm::DenseMap<RequestKey<Request>, | 202 | 3.38M | typename Request::OutputType>; | 203 | 3.38M | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 3.38M | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31ExpandMacroExpansionExprRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24ResolveMacroConformancesEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22MacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 42 | get() const { | 200 | 42 | using Map = | 201 | 42 | llvm::DenseMap<RequestKey<Request>, | 202 | 42 | typename Request::OutputType>; | 203 | 42 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 42 | } |
DeclContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26FragileFunctionKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 565k | get() const { | 200 | 565k | using Map = | 201 | 565k | llvm::DenseMap<RequestKey<Request>, | 202 | 565k | typename Request::OutputType>; | 203 | 565k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 565k | } |
DeclContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ParseMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 624k | get() const { | 200 | 624k | using Map = | 201 | 624k | llvm::DenseMap<RequestKey<Request>, | 202 | 624k | typename Request::OutputType>; | 203 | 624k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 624k | } |
DeclContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17ABIMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 36.0k | get() const { | 200 | 36.0k | using Map = | 201 | 36.0k | llvm::DenseMap<RequestKey<Request>, | 202 | 36.0k | typename Request::OutputType>; | 203 | 36.0k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 36.0k | } |
DeclContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17AllMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 42.2k | get() const { | 200 | 42.2k | using Map = | 201 | 42.2k | llvm::DenseMap<RequestKey<Request>, | 202 | 42.2k | typename Request::OutputType>; | 203 | 42.2k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 42.2k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_48GetDistributedActorArgumentDecodingMethodRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_43GetDistributedActorInvocationDecoderRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 24 | get() const { | 200 | 24 | using Map = | 201 | 24 | llvm::DenseMap<RequestKey<Request>, | 202 | 24 | typename Request::OutputType>; | 203 | 24 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 24 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26GetDistributedThunkRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40GetDistributedActorSystemPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_36GetDistributedActorIDPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 60 | get() const { | 200 | 60 | using Map = | 201 | 60 | llvm::DenseMap<RequestKey<Request>, | 202 | 60 | typename Request::OutputType>; | 203 | 60 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 60 | } |
DocComment.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27SemanticBriefCommentRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 5.68k | get() const { | 200 | 5.68k | using Map = | 201 | 5.68k | llvm::DenseMap<RequestKey<Request>, | 202 | 5.68k | typename Request::OutputType>; | 203 | 5.68k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 5.68k | } |
Unexecuted instantiation: Effects.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_36PolymorphicEffectRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Effects.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28PolymorphicEffectKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 340k | get() const { | 200 | 340k | using Map = | 201 | 340k | llvm::DenseMap<RequestKey<Request>, | 202 | 340k | typename Request::OutputType>; | 203 | 340k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 340k | } |
Unexecuted instantiation: Effects.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27ConformanceHasEffectRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Expr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Expr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ClosureEffectsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.44M | get() const { | 200 | 1.44M | using Map = | 201 | 1.44M | llvm::DenseMap<RequestKey<Request>, | 202 | 1.44M | typename Request::OutputType>; | 203 | 1.44M | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.44M | } |
GenericSignature.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31AbstractGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 50.5k | get() const { | 200 | 50.5k | using Map = | 201 | 50.5k | llvm::DenseMap<RequestKey<Request>, | 202 | 50.5k | typename Request::OutputType>; | 203 | 50.5k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 50.5k | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22IsNonUserModuleRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 75 | get() const { | 200 | 75 | using Map = | 201 | 75 | llvm::DenseMap<RequestKey<Request>, | 202 | 75 | typename Request::OutputType>; | 203 | 75 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 75 | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28ModuleImplicitImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.97k | get() const { | 200 | 1.97k | using Map = | 201 | 1.97k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.97k | typename Request::OutputType>; | 203 | 1.97k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.97k | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25PrimarySourceFilesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.56k | get() const { | 200 | 1.56k | using Map = | 201 | 1.56k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.56k | typename Request::OutputType>; | 203 | 1.56k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.56k | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26MangleLocalTypeDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 27 | get() const { | 200 | 27 | using Map = | 201 | 27 | llvm::DenseMap<RequestKey<Request>, | 202 | 27 | typename Request::OutputType>; | 203 | 27 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 27 | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ExpandExtensionMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.38M | get() const { | 200 | 2.38M | using Map = | 201 | 2.38M | llvm::DenseMap<RequestKey<Request>, | 202 | 2.38M | typename Request::OutputType>; | 203 | 2.38M | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.38M | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_39ImplicitKnownProtocolConformanceRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 49.7k | get() const { | 200 | 49.7k | using Map = | 201 | 49.7k | llvm::DenseMap<RequestKey<Request>, | 202 | 49.7k | typename Request::OutputType>; | 203 | 49.7k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 49.7k | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_41GetDistributedActorImplicitCodableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_16SPIGroupsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 3.37M | get() const { | 200 | 3.37M | using Map = | 201 | 3.37M | llvm::DenseMap<RequestKey<Request>, | 202 | 3.37M | typename Request::OutputType>; | 203 | 3.37M | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 3.37M | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25ModuleLibraryLevelRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.14k | get() const { | 200 | 1.14k | using Map = | 201 | 1.14k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.14k | typename Request::OutputType>; | 203 | 1.14k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.14k | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25ParseTopLevelDeclsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 72.9k | get() const { | 200 | 72.9k | using Map = | 201 | 72.9k | llvm::DenseMap<RequestKey<Request>, | 202 | 72.9k | typename Request::OutputType>; | 203 | 72.9k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 72.9k | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25ExportedSourceFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.72k | get() const { | 200 | 1.72k | using Map = | 201 | 1.72k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.72k | typename Request::OutputType>; | 203 | 1.72k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.72k | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22GetSourceFileAsyncNodeEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 10.6k | get() const { | 200 | 10.6k | using Map = | 201 | 10.6k | llvm::DenseMap<RequestKey<Request>, | 202 | 10.6k | typename Request::OutputType>; | 203 | 10.6k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 10.6k | } |
NameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_35ExpandSynthesizedMemberMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 45.0k | get() const { | 200 | 45.0k | using Map = | 201 | 45.0k | llvm::DenseMap<RequestKey<Request>, | 202 | 45.0k | typename Request::OutputType>; | 203 | 45.0k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 45.0k | } |
Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ExpandExtensionMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv NameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40PotentialMacroExpansionsInContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 233k | get() const { | 200 | 233k | using Map = | 201 | 233k | llvm::DenseMap<RequestKey<Request>, | 202 | 233k | typename Request::OutputType>; | 203 | 233k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 233k | } |
NameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30IsCallAsFunctionNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 420 | get() const { | 200 | 420 | using Map = | 201 | 420 | llvm::DenseMap<RequestKey<Request>, | 202 | 420 | typename Request::OutputType>; | 203 | 420 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 420 | } |
NameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_38HasDynamicMemberLookupAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 106k | get() const { | 200 | 106k | using Map = | 201 | 106k | llvm::DenseMap<RequestKey<Request>, | 202 | 106k | typename Request::OutputType>; | 203 | 106k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 106k | } |
NameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_34HasDynamicCallableAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 689 | get() const { | 200 | 689 | using Map = | 201 | 689 | llvm::DenseMap<RequestKey<Request>, | 202 | 689 | typename Request::OutputType>; | 203 | 689 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 689 | } |
OperatorNameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LookupInfixOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 22.5k | get() const { | 200 | 22.5k | using Map = | 201 | 22.5k | llvm::DenseMap<RequestKey<Request>, | 202 | 22.5k | typename Request::OutputType>; | 203 | 22.5k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 22.5k | } |
OperatorNameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27LookupPrefixOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 32 | get() const { | 200 | 32 | using Map = | 201 | 32 | llvm::DenseMap<RequestKey<Request>, | 202 | 32 | typename Request::OutputType>; | 203 | 32 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 32 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28LookupPostfixOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv OperatorNameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28LookupPrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 8.05k | get() const { | 200 | 8.05k | using Map = | 201 | 8.05k | llvm::DenseMap<RequestKey<Request>, | 202 | 8.05k | typename Request::OutputType>; | 203 | 8.05k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 8.05k | } |
ProtocolConformance.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30ConditionalRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 613k | get() const { | 200 | 613k | using Map = | 201 | 613k | llvm::DenseMap<RequestKey<Request>, | 202 | 613k | typename Request::OutputType>; | 203 | 613k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 613k | } |
ProtocolConformance.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_37LookupAllConformancesInContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 184k | get() const { | 200 | 184k | using Map = | 201 | 184k | llvm::DenseMap<RequestKey<Request>, | 202 | 184k | typename Request::OutputType>; | 203 | 184k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 184k | } |
RawComment.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17RawCommentRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 31.2k | get() const { | 200 | 31.2k | using Map = | 201 | 31.2k | llvm::DenseMap<RequestKey<Request>, | 202 | 31.2k | typename Request::OutputType>; | 203 | 31.2k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 31.2k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31AbstractGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Stmt.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24IsSingleValueStmtRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 38.5k | get() const { | 200 | 38.5k | using Map = | 201 | 38.5k | llvm::DenseMap<RequestKey<Request>, | 202 | 38.5k | typename Request::OutputType>; | 203 | 38.5k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 38.5k | } |
Stmt.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_18BreakTargetRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.19k | get() const { | 200 | 1.19k | using Map = | 201 | 1.19k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.19k | typename Request::OutputType>; | 203 | 1.19k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.19k | } |
Stmt.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ContinueTargetRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 592 | get() const { | 200 | 592 | using Map = | 201 | 592 | llvm::DenseMap<RequestKey<Request>, | 202 | 592 | typename Request::OutputType>; | 203 | 592 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 592 | } |
Unexecuted instantiation: Type.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_20IsNoncopyableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckRequests.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_18RequirementRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 53.1k | get() const { | 200 | 53.1k | using Map = | 201 | 53.1k | llvm::DenseMap<RequestKey<Request>, | 202 | 53.1k | typename Request::OutputType>; | 203 | 53.1k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 53.1k | } |
TypeRefinementContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40ExpandChildTypeRefinementContextsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 568k | get() const { | 200 | 568k | using Map = | 201 | 568k | llvm::DenseMap<RequestKey<Request>, | 202 | 568k | typename Request::OutputType>; | 203 | 568k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 568k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_20USRGenerationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv |
206 | | |
207 | 54.0M | bool isNull() const { return !Storage; } |
208 | 91.9k | ~PerRequestCache() { |
209 | 91.9k | if (Storage) |
210 | 15.6k | Deleter(Storage); |
211 | 91.9k | } |
212 | | }; |
213 | | |
214 | | /// Data structure for caching results of requests. Sharded by the type ID |
215 | | /// zone and request kind, with a PerRequestCache for each request kind. |
216 | | /// |
217 | | /// Conceptually equivalent to DenseMap<AnyRequest, AnyValue>, but without |
218 | | /// type erasure overhead for keys and values. |
219 | | class RequestCache { |
220 | | |
221 | | #define SWIFT_TYPEID_ZONE(Name, Id) \ |
222 | | std::vector<PerRequestCache> Name##ZoneCache; \ |
223 | | \ |
224 | | template < \ |
225 | | typename Request, typename ZoneTypes = TypeIDZoneTypes<Zone::Name>, \ |
226 | | typename std::enable_if<TypeID<Request>::zone == Zone::Name>::type * = \ |
227 | | nullptr> \ |
228 | | llvm::DenseMap<RequestKey<Request>, \ |
229 | | typename Request::OutputType> * \ |
230 | 54.0M | getCache() { \ |
231 | 54.0M | auto &caches = Name##ZoneCache; \ |
232 | 54.0M | if (caches.empty()) { \ |
233 | 778 | caches.resize(ZoneTypes::Count); \ |
234 | 778 | } \ |
235 | 54.0M | auto idx = TypeID<Request>::localID; \ |
236 | 54.0M | if (caches[idx].isNull()) { \ |
237 | 15.6k | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ |
238 | 15.6k | } \ |
239 | 54.0M | return caches[idx].template get<Request>(); \ |
240 | 54.0M | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22SymbolSourceMapRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_20USRGenerationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 52.9k | getCache() { \ | 231 | 52.9k | auto &caches = Name##ZoneCache; \ | 232 | 52.9k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 52.9k | auto idx = TypeID<Request>::localID; \ | 236 | 52.9k | if (caches[idx].isNull()) { \ | 237 | 35 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 35 | } \ | 239 | 52.9k | return caches[idx].template get<Request>(); \ | 240 | 52.9k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_18RenamedDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24IDEInspectionFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24ConstantValueInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE140EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22SymbolSourceMapRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Common.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28TangentStoredPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.05k | getCache() { \ | 231 | 2.05k | auto &caches = Name##ZoneCache; \ | 232 | 2.05k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.05k | auto idx = TypeID<Request>::localID; \ | 236 | 2.05k | if (caches[idx].isNull()) { \ | 237 | 6 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 6 | } \ | 239 | 2.05k | return caches[idx].template get<Request>(); \ | 240 | 2.05k | } |
Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28ProvideDefaultImplForRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_46RootAndResultTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26ResolveProtocolNameRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28ProvideDefaultImplForRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29CollectOverriddenDeclsRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23IsDeclApplicableRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24TypeRelationCheckRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_15InitKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23OpaqueResultTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LazyStoragePropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40PropertyWrapperAuxiliaryVariablesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_37PropertyWrapperInitializerInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_41PropertyWrapperBackingPropertyTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27DefaultInitializerIsolationENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23FunctionOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30OperatorPrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22MacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17HasStorageRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26MangleLocalTypeDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28PreCheckResultBuilderRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31ExpandMacroExpansionExprRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv CSRanking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_32CompareDeclSpecializationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 104k | getCache() { \ | 231 | 104k | auto &caches = Name##ZoneCache; \ | 232 | 104k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 104k | auto idx = TypeID<Request>::localID; \ | 236 | 104k | if (caches[idx].isNull()) { \ | 237 | 143 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 143 | } \ | 239 | 104k | return caches[idx].template get<Request>(); \ | 240 | 104k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29EnumElementExprPatternRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_34HasDynamicCallableAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv CSStep.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25IsDeclRefinementOfRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 21.1k | getCache() { \ | 231 | 21.1k | auto &caches = Name##ZoneCache; \ | 232 | 21.1k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 21.1k | auto idx = TypeID<Request>::localID; \ | 236 | 21.1k | if (caches[idx].isNull()) { \ | 237 | 64 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 64 | } \ | 239 | 21.1k | return caches[idx].template get<Request>(); \ | 240 | 21.1k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_35HasUserDefinedDesignatedInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 7.40k | getCache() { \ | 231 | 7.40k | auto &caches = Name##ZoneCache; \ | 232 | 7.40k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 7.40k | auto idx = TypeID<Request>::localID; \ | 236 | 7.40k | if (caches[idx].isNull()) { \ | 237 | 124 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 124 | } \ | 239 | 7.40k | return caches[idx].template get<Request>(); \ | 240 | 7.40k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_44AreAllStoredPropertiesDefaultInitableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.61k | getCache() { \ | 231 | 2.61k | auto &caches = Name##ZoneCache; \ | 232 | 2.61k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.61k | auto idx = TypeID<Request>::localID; \ | 236 | 2.61k | if (caches[idx].isNull()) { \ | 237 | 103 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 103 | } \ | 239 | 2.61k | return caches[idx].template get<Request>(); \ | 240 | 2.61k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ClosureEffectsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv ConstraintSystem.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31ClosureHasExplicitResultRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.37k | getCache() { \ | 231 | 2.37k | auto &caches = Name##ZoneCache; \ | 232 | 2.37k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.37k | auto idx = TypeID<Request>::localID; \ | 236 | 2.37k | if (caches[idx].isNull()) { \ | 237 | 75 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 75 | } \ | 239 | 2.37k | return caches[idx].template get<Request>(); \ | 240 | 2.37k | } |
DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28TangentStoredPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 457 | getCache() { \ | 231 | 457 | auto &caches = Name##ZoneCache; \ | 232 | 457 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 457 | auto idx = TypeID<Request>::localID; \ | 236 | 457 | if (caches[idx].isNull()) { \ | 237 | 41 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 41 | } \ | 239 | 457 | return caches[idx].template get<Request>(); \ | 240 | 457 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23IsDeclApplicableRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_46RootAndResultTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25PreCheckReturnStmtRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29SynthesizeMainFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28IsCCompatibleFuncDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24ResolveMacroConformancesENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31InferredGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27GlobalActorAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27GlobalActorAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckDistributed.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_35DistributedModuleIsAvailableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 72 | getCache() { \ | 231 | 72 | auto &caches = Name##ZoneCache; \ | 232 | 72 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 72 | auto idx = TypeID<Request>::localID; \ | 236 | 72 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 72 | return caches[idx].template get<Request>(); \ | 240 | 72 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31CheckDistributedFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30ValidatePrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 11.3k | getCache() { \ | 231 | 11.3k | auto &caches = Name##ZoneCache; \ | 232 | 11.3k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 11.3k | auto idx = TypeID<Request>::localID; \ | 236 | 11.3k | if (caches[idx].isNull()) { \ | 237 | 113 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 113 | } \ | 239 | 11.3k | return caches[idx].template get<Request>(); \ | 240 | 11.3k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_35ExpandSynthesizedMemberMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29SynthesizeMainFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 35.1k | getCache() { \ | 231 | 35.1k | auto &caches = Name##ZoneCache; \ | 232 | 35.1k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 35.1k | auto idx = TypeID<Request>::localID; \ | 236 | 35.1k | if (caches[idx].isNull()) { \ | 237 | 158 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 158 | } \ | 239 | 35.1k | return caches[idx].template get<Request>(); \ | 240 | 35.1k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_36HasCircularInheritedProtocolsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26HasCircularRawValueRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30IsABICompatibleOverrideRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_34TypeCheckObjCImplementationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30ExternalMacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ExpandExtensionMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22ApplyAccessNoteRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 801k | getCache() { \ | 231 | 801k | auto &caches = Name##ZoneCache; \ | 232 | 801k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 801k | auto idx = TypeID<Request>::localID; \ | 236 | 801k | if (caches[idx].isNull()) { \ | 237 | 229 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 229 | } \ | 239 | 801k | return caches[idx].template get<Request>(); \ | 240 | 801k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ResolveMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31InferredGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30ExternalMacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 36 | getCache() { \ | 231 | 36 | auto &caches = Name##ZoneCache; \ | 232 | 36 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 36 | auto idx = TypeID<Request>::localID; \ | 236 | 36 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 36 | return caches[idx].template get<Request>(); \ | 240 | 36 | } |
TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25CompilerPluginLoadRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 28 | getCache() { \ | 231 | 28 | auto &caches = Name##ZoneCache; \ | 232 | 28 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 28 | auto idx = TypeID<Request>::localID; \ | 236 | 28 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 28 | return caches[idx].template get<Request>(); \ | 240 | 28 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31ExpandMacroExpansionDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckPattern.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_18PatternTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 94.2k | getCache() { \ | 231 | 94.2k | auto &caches = Name##ZoneCache; \ | 232 | 94.2k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 94.2k | auto idx = TypeID<Request>::localID; \ | 236 | 94.2k | if (caches[idx].isNull()) { \ | 237 | 200 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 200 | } \ | 239 | 94.2k | return caches[idx].template get<Request>(); \ | 240 | 94.2k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31AttachedPropertyWrappersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40PotentialMacroExpansionsInContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 7.05k | getCache() { \ | 231 | 7.05k | auto &caches = Name##ZoneCache; \ | 232 | 7.05k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 7.05k | auto idx = TypeID<Request>::localID; \ | 236 | 7.05k | if (caches[idx].isNull()) { \ | 237 | 16 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 16 | } \ | 239 | 7.05k | return caches[idx].template get<Request>(); \ | 240 | 7.05k | } |
TypeCheckStmt.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25PreCheckReturnStmtRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 60.7k | getCache() { \ | 231 | 60.7k | auto &caches = Name##ZoneCache; \ | 232 | 60.7k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 60.7k | auto idx = TypeID<Request>::localID; \ | 236 | 60.7k | if (caches[idx].isNull()) { \ | 237 | 179 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 179 | } \ | 239 | 60.7k | return caches[idx].template get<Request>(); \ | 240 | 60.7k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_35ExpandSynthesizedMemberMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22ExpandPeerMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_32PropertyWrapperLValuenessRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 298 | getCache() { \ | 231 | 298 | auto &caches = Name##ZoneCache; \ | 232 | 298 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 298 | auto idx = TypeID<Request>::localID; \ | 236 | 298 | if (caches[idx].isNull()) { \ | 237 | 8 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 8 | } \ | 239 | 298 | return caches[idx].template get<Request>(); \ | 240 | 298 | } |
TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_20ExpandAccessorMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 84.2k | getCache() { \ | 231 | 84.2k | auto &caches = Name##ZoneCache; \ | 232 | 84.2k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 84.2k | auto idx = TypeID<Request>::localID; \ | 236 | 84.2k | if (caches[idx].isNull()) { \ | 237 | 194 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 194 | } \ | 239 | 84.2k | return caches[idx].template get<Request>(); \ | 240 | 84.2k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40PropertyWrapperAuxiliaryVariablesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeChecker.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_49CheckInconsistentImplementationOnlyImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.90k | getCache() { \ | 231 | 1.90k | auto &caches = Name##ZoneCache; \ | 232 | 1.90k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.90k | auto idx = TypeID<Request>::localID; \ | 236 | 1.90k | if (caches[idx].isNull()) { \ | 237 | 253 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 253 | } \ | 239 | 1.90k | return caches[idx].template get<Request>(); \ | 240 | 1.90k | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_38CheckInconsistentSPIOnlyImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.48k | getCache() { \ | 231 | 2.48k | auto &caches = Name##ZoneCache; \ | 232 | 2.48k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.48k | auto idx = TypeID<Request>::localID; \ | 236 | 2.48k | if (caches[idx].isNull()) { \ | 237 | 253 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 253 | } \ | 239 | 2.48k | return caches[idx].template get<Request>(); \ | 240 | 2.48k | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_36CheckInconsistentAccessLevelOnImportENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.48k | getCache() { \ | 231 | 2.48k | auto &caches = Name##ZoneCache; \ | 232 | 2.48k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.48k | auto idx = TypeID<Request>::localID; \ | 236 | 2.48k | if (caches[idx].isNull()) { \ | 237 | 253 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 253 | } \ | 239 | 2.48k | return caches[idx].template get<Request>(); \ | 240 | 2.48k | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_41CheckInconsistentWeakLinkedImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.90k | getCache() { \ | 231 | 1.90k | auto &caches = Name##ZoneCache; \ | 232 | 1.90k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.90k | auto idx = TypeID<Request>::localID; \ | 236 | 1.90k | if (caches[idx].isNull()) { \ | 237 | 253 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 253 | } \ | 239 | 1.90k | return caches[idx].template get<Request>(); \ | 240 | 1.90k | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31InferredGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 23.9k | getCache() { \ | 231 | 23.9k | auto &caches = Name##ZoneCache; \ | 232 | 23.9k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 23.9k | auto idx = TypeID<Request>::localID; \ | 236 | 23.9k | if (caches[idx].isNull()) { \ | 237 | 170 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 170 | } \ | 239 | 23.9k | return caches[idx].template get<Request>(); \ | 240 | 23.9k | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_46RootAndResultTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv ClangImporter.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17HasStorageRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 99.1k | getCache() { \ | 231 | 99.1k | auto &caches = Name##ZoneCache; \ | 232 | 99.1k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 99.1k | auto idx = TypeID<Request>::localID; \ | 236 | 99.1k | if (caches[idx].isNull()) { \ | 237 | 91 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 91 | } \ | 239 | 99.1k | return caches[idx].template get<Request>(); \ | 240 | 99.1k | } |
Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_15InitKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17HasStorageRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ParseMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv ASTContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 97.2k | getCache() { \ | 231 | 97.2k | auto &caches = Name##ZoneCache; \ | 232 | 97.2k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 97.2k | auto idx = TypeID<Request>::localID; \ | 236 | 97.2k | if (caches[idx].isNull()) { \ | 237 | 166 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 166 | } \ | 239 | 97.2k | return caches[idx].template get<Request>(); \ | 240 | 97.2k | } |
ASTContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 12 | getCache() { \ | 231 | 12 | auto &caches = Name##ZoneCache; \ | 232 | 12 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 12 | auto idx = TypeID<Request>::localID; \ | 236 | 12 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 12 | return caches[idx].template get<Request>(); \ | 240 | 12 | } |
ASTContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 12 | getCache() { \ | 231 | 12 | auto &caches = Name##ZoneCache; \ | 232 | 12 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 12 | auto idx = TypeID<Request>::localID; \ | 236 | 12 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 12 | return caches[idx].template get<Request>(); \ | 240 | 12 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv ASTContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 12 | getCache() { \ | 231 | 12 | auto &caches = Name##ZoneCache; \ | 232 | 12 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 12 | auto idx = TypeID<Request>::localID; \ | 236 | 12 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 12 | return caches[idx].template get<Request>(); \ | 240 | 12 | } |
ASTContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 22 | getCache() { \ | 231 | 22 | auto &caches = Name##ZoneCache; \ | 232 | 22 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 22 | auto idx = TypeID<Request>::localID; \ | 236 | 22 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 22 | return caches[idx].template get<Request>(); \ | 240 | 22 | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24ResolveMacroConformancesENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 104 | getCache() { \ | 231 | 104 | auto &caches = Name##ZoneCache; \ | 232 | 104 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 104 | auto idx = TypeID<Request>::localID; \ | 236 | 104 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 104 | return caches[idx].template get<Request>(); \ | 240 | 104 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30TypeEraserHasViableInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Attr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31SpecializeAttrTargetDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 9.32k | getCache() { \ | 231 | 9.32k | auto &caches = Name##ZoneCache; \ | 232 | 9.32k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 9.32k | auto idx = TypeID<Request>::localID; \ | 236 | 9.32k | if (caches[idx].isNull()) { \ | 237 | 55 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 55 | } \ | 239 | 9.32k | return caches[idx].template get<Request>(); \ | 240 | 9.32k | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_33DerivativeAttrOriginalDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 6.61k | getCache() { \ | 231 | 6.61k | auto &caches = Name##ZoneCache; \ | 232 | 6.61k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 6.61k | auto idx = TypeID<Request>::localID; \ | 236 | 6.61k | if (caches[idx].isNull()) { \ | 237 | 45 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 45 | } \ | 239 | 6.61k | return caches[idx].template get<Request>(); \ | 240 | 6.61k | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29ImplementsAttrProtocolRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 771 | getCache() { \ | 231 | 771 | auto &caches = Name##ZoneCache; \ | 232 | 771 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 771 | auto idx = TypeID<Request>::localID; \ | 236 | 771 | if (caches[idx].isNull()) { \ | 237 | 76 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 76 | } \ | 239 | 771 | return caches[idx].template get<Request>(); \ | 240 | 771 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_38InitAccessorReferencedVariablesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Availability.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_33SemanticAvailableRangeAttrRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.44k | getCache() { \ | 231 | 2.44k | auto &caches = Name##ZoneCache; \ | 232 | 2.44k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.44k | auto idx = TypeID<Request>::localID; \ | 236 | 2.44k | if (caches[idx].isNull()) { \ | 237 | 14 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 14 | } \ | 239 | 2.44k | return caches[idx].template get<Request>(); \ | 240 | 2.44k | } |
Availability.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30SemanticUnavailableAttrRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 548k | getCache() { \ | 231 | 548k | auto &caches = Name##ZoneCache; \ | 232 | 548k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 548k | auto idx = TypeID<Request>::localID; \ | 236 | 548k | if (caches[idx].isNull()) { \ | 237 | 196 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 196 | } \ | 239 | 548k | return caches[idx].template get<Request>(); \ | 240 | 548k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ParseMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27ExpandMemberAttributeMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.81M | getCache() { \ | 231 | 2.81M | auto &caches = Name##ZoneCache; \ | 232 | 2.81M | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.81M | auto idx = TypeID<Request>::localID; \ | 236 | 2.81M | if (caches[idx].isNull()) { \ | 237 | 268 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 268 | } \ | 239 | 2.81M | return caches[idx].template get<Request>(); \ | 240 | 2.81M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22ExpandPeerMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.08M | getCache() { \ | 231 | 1.08M | auto &caches = Name##ZoneCache; \ | 232 | 1.08M | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.08M | auto idx = TypeID<Request>::localID; \ | 236 | 1.08M | if (caches[idx].isNull()) { \ | 237 | 264 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 264 | } \ | 239 | 1.08M | return caches[idx].template get<Request>(); \ | 240 | 1.08M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31ExpandMacroExpansionDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ResolveMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.49k | getCache() { \ | 231 | 1.49k | auto &caches = Name##ZoneCache; \ | 232 | 1.49k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.49k | auto idx = TypeID<Request>::localID; \ | 236 | 1.49k | if (caches[idx].isNull()) { \ | 237 | 12 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 12 | } \ | 239 | 1.49k | return caches[idx].template get<Request>(); \ | 240 | 1.49k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27GlobalActorAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 6.53M | getCache() { \ | 231 | 6.53M | auto &caches = Name##ZoneCache; \ | 232 | 6.53M | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 6.53M | auto idx = TypeID<Request>::localID; \ | 236 | 6.53M | if (caches[idx].isNull()) { \ | 237 | 224 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 224 | } \ | 239 | 6.53M | return caches[idx].template get<Request>(); \ | 240 | 6.53M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25ScopedImportLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 66.3k | getCache() { \ | 231 | 66.3k | auto &caches = Name##ZoneCache; \ | 232 | 66.3k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 66.3k | auto idx = TypeID<Request>::localID; \ | 236 | 66.3k | if (caches[idx].isNull()) { \ | 237 | 85 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 85 | } \ | 239 | 66.3k | return caches[idx].template get<Request>(); \ | 240 | 66.3k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30IsABICompatibleOverrideRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 27.1k | getCache() { \ | 231 | 27.1k | auto &caches = Name##ZoneCache; \ | 232 | 27.1k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 27.1k | auto idx = TypeID<Request>::localID; \ | 236 | 27.1k | if (caches[idx].isNull()) { \ | 237 | 99 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 99 | } \ | 239 | 27.1k | return caches[idx].template get<Request>(); \ | 240 | 27.1k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 46.2k | getCache() { \ | 231 | 46.2k | auto &caches = Name##ZoneCache; \ | 232 | 46.2k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 46.2k | auto idx = TypeID<Request>::localID; \ | 236 | 46.2k | if (caches[idx].isNull()) { \ | 237 | 141 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 141 | } \ | 239 | 46.2k | return caches[idx].template get<Request>(); \ | 240 | 46.2k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23OpaqueResultTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 32 | getCache() { \ | 231 | 32 | auto &caches = Name##ZoneCache; \ | 232 | 32 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 32 | auto idx = TypeID<Request>::localID; \ | 236 | 32 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 32 | return caches[idx].template get<Request>(); \ | 240 | 32 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30DynamicallyReplacedDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 680k | getCache() { \ | 231 | 680k | auto &caches = Name##ZoneCache; \ | 232 | 680k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 680k | auto idx = TypeID<Request>::localID; \ | 236 | 680k | if (caches[idx].isNull()) { \ | 237 | 224 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 224 | } \ | 239 | 680k | return caches[idx].template get<Request>(); \ | 240 | 680k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23StoredPropertiesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 11.8M | getCache() { \ | 231 | 11.8M | auto &caches = Name##ZoneCache; \ | 232 | 11.8M | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 11.8M | auto idx = TypeID<Request>::localID; \ | 236 | 11.8M | if (caches[idx].isNull()) { \ | 237 | 252 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 252 | } \ | 239 | 11.8M | return caches[idx].template get<Request>(); \ | 240 | 11.8M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29InitAccessorPropertiesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 7.75k | getCache() { \ | 231 | 7.75k | auto &caches = Name##ZoneCache; \ | 232 | 7.75k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 7.75k | auto idx = TypeID<Request>::localID; \ | 236 | 7.75k | if (caches[idx].isNull()) { \ | 237 | 122 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 122 | } \ | 239 | 7.75k | return caches[idx].template get<Request>(); \ | 240 | 7.75k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31MemberwiseInitPropertiesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 5.10k | getCache() { \ | 231 | 5.10k | auto &caches = Name##ZoneCache; \ | 232 | 5.10k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 5.10k | auto idx = TypeID<Request>::localID; \ | 236 | 5.10k | if (caches[idx].isNull()) { \ | 237 | 122 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 122 | } \ | 239 | 5.10k | return caches[idx].template get<Request>(); \ | 240 | 5.10k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40StoredPropertiesAndMissingMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 11.0k | getCache() { \ | 231 | 11.0k | auto &caches = Name##ZoneCache; \ | 232 | 11.0k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 11.0k | auto idx = TypeID<Request>::localID; \ | 236 | 11.0k | if (caches[idx].isNull()) { \ | 237 | 70 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 70 | } \ | 239 | 11.0k | return caches[idx].template get<Request>(); \ | 240 | 11.0k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30PropertyWrapperTypeInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.49k | getCache() { \ | 231 | 2.49k | auto &caches = Name##ZoneCache; \ | 232 | 2.49k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.49k | auto idx = TypeID<Request>::localID; \ | 236 | 2.49k | if (caches[idx].isNull()) { \ | 237 | 16 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 16 | } \ | 239 | 2.49k | return caches[idx].template get<Request>(); \ | 240 | 2.49k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_14IsActorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.87M | getCache() { \ | 231 | 2.87M | auto &caches = Name##ZoneCache; \ | 232 | 2.87M | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.87M | auto idx = TypeID<Request>::localID; \ | 236 | 2.87M | if (caches[idx].isNull()) { \ | 237 | 209 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 209 | } \ | 239 | 2.87M | return caches[idx].template get<Request>(); \ | 240 | 2.87M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25IsDistributedActorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 776k | getCache() { \ | 231 | 776k | auto &caches = Name##ZoneCache; \ | 232 | 776k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 776k | auto idx = TypeID<Request>::localID; \ | 236 | 776k | if (caches[idx].isNull()) { \ | 237 | 258 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 258 | } \ | 239 | 776k | return caches[idx].template get<Request>(); \ | 240 | 776k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21StructuralTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 28.8k | getCache() { \ | 231 | 28.8k | auto &caches = Name##ZoneCache; \ | 232 | 28.8k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 28.8k | auto idx = TypeID<Request>::localID; \ | 236 | 28.8k | if (caches[idx].isNull()) { \ | 237 | 262 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 262 | } \ | 239 | 28.8k | return caches[idx].template get<Request>(); \ | 240 | 28.8k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_18EnumRawTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 30.2k | getCache() { \ | 231 | 30.2k | auto &caches = Name##ZoneCache; \ | 232 | 30.2k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 30.2k | auto idx = TypeID<Request>::localID; \ | 236 | 30.2k | if (caches[idx].isNull()) { \ | 237 | 220 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 220 | } \ | 239 | 30.2k | return caches[idx].template get<Request>(); \ | 240 | 30.2k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24HasMemberwiseInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 4.60k | getCache() { \ | 231 | 4.60k | auto &caches = Name##ZoneCache; \ | 232 | 4.60k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 4.60k | auto idx = TypeID<Request>::localID; \ | 236 | 4.60k | if (caches[idx].isNull()) { \ | 237 | 117 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 117 | } \ | 239 | 4.60k | return caches[idx].template get<Request>(); \ | 240 | 4.60k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31SynthesizeMemberwiseInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.10k | getCache() { \ | 231 | 2.10k | auto &caches = Name##ZoneCache; \ | 232 | 2.10k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.10k | auto idx = TypeID<Request>::localID; \ | 236 | 2.10k | if (caches[idx].isNull()) { \ | 237 | 74 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 74 | } \ | 239 | 2.10k | return caches[idx].template get<Request>(); \ | 240 | 2.10k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_37ResolveEffectiveMemberwiseInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 3.43k | getCache() { \ | 231 | 3.43k | auto &caches = Name##ZoneCache; \ | 232 | 3.43k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 3.43k | auto idx = TypeID<Request>::localID; \ | 236 | 3.43k | if (caches[idx].isNull()) { \ | 237 | 62 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 62 | } \ | 239 | 3.43k | return caches[idx].template get<Request>(); \ | 240 | 3.43k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21HasDefaultInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 4.62k | getCache() { \ | 231 | 4.62k | auto &caches = Name##ZoneCache; \ | 232 | 4.62k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 4.62k | auto idx = TypeID<Request>::localID; \ | 236 | 4.62k | if (caches[idx].isNull()) { \ | 237 | 120 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 120 | } \ | 239 | 4.62k | return caches[idx].template get<Request>(); \ | 240 | 4.62k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28SynthesizeDefaultInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 945 | getCache() { \ | 231 | 945 | auto &caches = Name##ZoneCache; \ | 232 | 945 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 945 | auto idx = TypeID<Request>::localID; \ | 236 | 945 | if (caches[idx].isNull()) { \ | 237 | 75 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 75 | } \ | 239 | 945 | return caches[idx].template get<Request>(); \ | 240 | 945 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26GlobalActorInstanceRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 248 | getCache() { \ | 231 | 248 | auto &caches = Name##ZoneCache; \ | 232 | 248 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 248 | auto idx = TypeID<Request>::localID; \ | 236 | 248 | if (caches[idx].isNull()) { \ | 237 | 12 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 12 | } \ | 239 | 248 | return caches[idx].template get<Request>(); \ | 240 | 248 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21IsDefaultActorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 8.88k | getCache() { \ | 231 | 8.88k | auto &caches = Name##ZoneCache; \ | 232 | 8.88k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 8.88k | auto idx = TypeID<Request>::localID; \ | 236 | 8.88k | if (caches[idx].isNull()) { \ | 237 | 43 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 43 | } \ | 239 | 8.88k | return caches[idx].template get<Request>(); \ | 240 | 8.88k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25ClassAncestryFlagsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 29.9k | getCache() { \ | 231 | 29.9k | auto &caches = Name##ZoneCache; \ | 232 | 29.9k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 29.9k | auto idx = TypeID<Request>::localID; \ | 236 | 29.9k | if (caches[idx].isNull()) { \ | 237 | 118 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 118 | } \ | 239 | 29.9k | return caches[idx].template get<Request>(); \ | 240 | 29.9k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26HasCircularRawValueRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.02k | getCache() { \ | 231 | 2.02k | auto &caches = Name##ZoneCache; \ | 232 | 2.02k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.02k | auto idx = TypeID<Request>::localID; \ | 236 | 2.02k | if (caches[idx].isNull()) { \ | 237 | 67 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 67 | } \ | 239 | 2.02k | return caches[idx].template get<Request>(); \ | 240 | 2.02k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29PrimaryAssociatedTypesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 13.7k | getCache() { \ | 231 | 13.7k | auto &caches = Name##ZoneCache; \ | 232 | 13.7k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 13.7k | auto idx = TypeID<Request>::localID; \ | 236 | 13.7k | if (caches[idx].isNull()) { \ | 237 | 48 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 48 | } \ | 239 | 13.7k | return caches[idx].template get<Request>(); \ | 240 | 13.7k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29StructuralRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.18k | getCache() { \ | 231 | 2.18k | auto &caches = Name##ZoneCache; \ | 232 | 2.18k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.18k | auto idx = TypeID<Request>::localID; \ | 236 | 2.18k | if (caches[idx].isNull()) { \ | 237 | 82 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 82 | } \ | 239 | 2.18k | return caches[idx].template get<Request>(); \ | 240 | 2.18k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28TypeAliasRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.31k | getCache() { \ | 231 | 1.31k | auto &caches = Name##ZoneCache; \ | 232 | 1.31k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.31k | auto idx = TypeID<Request>::localID; \ | 236 | 1.31k | if (caches[idx].isNull()) { \ | 237 | 82 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 82 | } \ | 239 | 1.31k | return caches[idx].template get<Request>(); \ | 240 | 1.31k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27ProtocolDependenciesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 302k | getCache() { \ | 231 | 302k | auto &caches = Name##ZoneCache; \ | 232 | 302k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 302k | auto idx = TypeID<Request>::localID; \ | 236 | 302k | if (caches[idx].isNull()) { \ | 237 | 224 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 224 | } \ | 239 | 302k | return caches[idx].template get<Request>(); \ | 240 | 302k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_36HasCircularInheritedProtocolsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.83k | getCache() { \ | 231 | 1.83k | auto &caches = Name##ZoneCache; \ | 232 | 1.83k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.83k | auto idx = TypeID<Request>::localID; \ | 236 | 1.83k | if (caches[idx].isNull()) { \ | 237 | 74 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 74 | } \ | 239 | 1.83k | return caches[idx].template get<Request>(); \ | 240 | 1.83k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17HasStorageRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.29M | getCache() { \ | 231 | 2.29M | auto &caches = Name##ZoneCache; \ | 232 | 2.29M | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.29M | auto idx = TypeID<Request>::localID; \ | 236 | 2.29M | if (caches[idx].isNull()) { \ | 237 | 171 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 171 | } \ | 239 | 2.29M | return caches[idx].template get<Request>(); \ | 240 | 2.29M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22HasInitAccessorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 568k | getCache() { \ | 231 | 568k | auto &caches = Name##ZoneCache; \ | 232 | 568k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 568k | auto idx = TypeID<Request>::localID; \ | 236 | 568k | if (caches[idx].isNull()) { \ | 237 | 258 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 258 | } \ | 239 | 568k | return caches[idx].template get<Request>(); \ | 240 | 568k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27DefaultInitializerIsolationENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 414k | getCache() { \ | 231 | 414k | auto &caches = Name##ZoneCache; \ | 232 | 414k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 414k | auto idx = TypeID<Request>::localID; \ | 236 | 414k | if (caches[idx].isNull()) { \ | 237 | 263 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 263 | } \ | 239 | 414k | return caches[idx].template get<Request>(); \ | 240 | 414k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31AttachedPropertyWrappersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 6.12M | getCache() { \ | 231 | 6.12M | auto &caches = Name##ZoneCache; \ | 232 | 6.12M | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 6.12M | auto idx = TypeID<Request>::localID; \ | 236 | 6.12M | if (caches[idx].isNull()) { \ | 237 | 238 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 238 | } \ | 239 | 6.12M | return caches[idx].template get<Request>(); \ | 240 | 6.12M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_34AttachedPropertyWrapperTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 3.69k | getCache() { \ | 231 | 3.69k | auto &caches = Name##ZoneCache; \ | 232 | 3.69k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 3.69k | auto idx = TypeID<Request>::localID; \ | 236 | 3.69k | if (caches[idx].isNull()) { \ | 237 | 77 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 77 | } \ | 239 | 3.69k | return caches[idx].template get<Request>(); \ | 240 | 3.69k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_41PropertyWrapperBackingPropertyTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 3.70k | getCache() { \ | 231 | 3.70k | auto &caches = Name##ZoneCache; \ | 232 | 3.70k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 3.70k | auto idx = TypeID<Request>::localID; \ | 236 | 3.70k | if (caches[idx].isNull()) { \ | 237 | 77 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 77 | } \ | 239 | 3.70k | return caches[idx].template get<Request>(); \ | 240 | 3.70k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40PropertyWrapperAuxiliaryVariablesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 246k | getCache() { \ | 231 | 246k | auto &caches = Name##ZoneCache; \ | 232 | 246k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 246k | auto idx = TypeID<Request>::localID; \ | 236 | 246k | if (caches[idx].isNull()) { \ | 237 | 209 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 209 | } \ | 239 | 246k | return caches[idx].template get<Request>(); \ | 240 | 246k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_37PropertyWrapperInitializerInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 74.1k | getCache() { \ | 231 | 74.1k | auto &caches = Name##ZoneCache; \ | 232 | 74.1k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 74.1k | auto idx = TypeID<Request>::localID; \ | 236 | 74.1k | if (caches[idx].isNull()) { \ | 237 | 201 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 201 | } \ | 239 | 74.1k | return caches[idx].template get<Request>(); \ | 240 | 74.1k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_32PropertyWrapperMutabilityRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 113k | getCache() { \ | 231 | 113k | auto &caches = Name##ZoneCache; \ | 232 | 113k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 113k | auto idx = TypeID<Request>::localID; \ | 236 | 113k | if (caches[idx].isNull()) { \ | 237 | 202 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 202 | } \ | 239 | 113k | return caches[idx].template get<Request>(); \ | 240 | 113k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LazyStoragePropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 37 | getCache() { \ | 231 | 37 | auto &caches = Name##ZoneCache; \ | 232 | 37 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 37 | auto idx = TypeID<Request>::localID; \ | 236 | 37 | if (caches[idx].isNull()) { \ | 237 | 3 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 3 | } \ | 239 | 37 | return caches[idx].template get<Request>(); \ | 240 | 37 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24ResultBuilderTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 93.0k | getCache() { \ | 231 | 93.0k | auto &caches = Name##ZoneCache; \ | 232 | 93.0k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 93.0k | auto idx = TypeID<Request>::localID; \ | 236 | 93.0k | if (caches[idx].isNull()) { \ | 237 | 197 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 197 | } \ | 239 | 93.0k | return caches[idx].template get<Request>(); \ | 240 | 93.0k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28AttachedResultBuilderRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 231k | getCache() { \ | 231 | 231k | auto &caches = Name##ZoneCache; \ | 232 | 231k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 231k | auto idx = TypeID<Request>::localID; \ | 236 | 231k | if (caches[idx].isNull()) { \ | 237 | 223 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 223 | } \ | 239 | 231k | return caches[idx].template get<Request>(); \ | 240 | 231k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_18RenamedDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.00k | getCache() { \ | 231 | 2.00k | auto &caches = Name##ZoneCache; \ | 232 | 2.00k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.00k | auto idx = TypeID<Request>::localID; \ | 236 | 2.00k | if (caches[idx].isNull()) { \ | 237 | 6 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 6 | } \ | 239 | 2.00k | return caches[idx].template get<Request>(); \ | 240 | 2.00k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23FunctionOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 71.9k | getCache() { \ | 231 | 71.9k | auto &caches = Name##ZoneCache; \ | 232 | 71.9k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 71.9k | auto idx = TypeID<Request>::localID; \ | 236 | 71.9k | if (caches[idx].isNull()) { \ | 237 | 210 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 210 | } \ | 239 | 71.9k | return caches[idx].template get<Request>(); \ | 240 | 71.9k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19SimpleDidSetRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_15InitKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 135k | getCache() { \ | 231 | 135k | auto &caches = Name##ZoneCache; \ | 232 | 135k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 135k | auto idx = TypeID<Request>::localID; \ | 236 | 135k | if (caches[idx].isNull()) { \ | 237 | 258 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 258 | } \ | 239 | 135k | return caches[idx].template get<Request>(); \ | 240 | 135k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19BodyInitKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 13.9k | getCache() { \ | 231 | 13.9k | auto &caches = Name##ZoneCache; \ | 232 | 13.9k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 13.9k | auto idx = TypeID<Request>::localID; \ | 236 | 13.9k | if (caches[idx].isNull()) { \ | 237 | 117 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 117 | } \ | 239 | 13.9k | return caches[idx].template get<Request>(); \ | 240 | 13.9k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30OperatorPrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 21.4k | getCache() { \ | 231 | 21.4k | auto &caches = Name##ZoneCache; \ | 232 | 21.4k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 21.4k | auto idx = TypeID<Request>::localID; \ | 236 | 21.4k | if (caches[idx].isNull()) { \ | 237 | 210 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 210 | } \ | 239 | 21.4k | return caches[idx].template get<Request>(); \ | 240 | 21.4k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ActorIsolationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 3.38M | getCache() { \ | 231 | 3.38M | auto &caches = Name##ZoneCache; \ | 232 | 3.38M | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 3.38M | auto idx = TypeID<Request>::localID; \ | 236 | 3.38M | if (caches[idx].isNull()) { \ | 237 | 224 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 224 | } \ | 239 | 3.38M | return caches[idx].template get<Request>(); \ | 240 | 3.38M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31ExpandMacroExpansionExprRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24ResolveMacroConformancesENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22MacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 42 | getCache() { \ | 231 | 42 | auto &caches = Name##ZoneCache; \ | 232 | 42 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 42 | auto idx = TypeID<Request>::localID; \ | 236 | 42 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 42 | return caches[idx].template get<Request>(); \ | 240 | 42 | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26FragileFunctionKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 565k | getCache() { \ | 231 | 565k | auto &caches = Name##ZoneCache; \ | 232 | 565k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 565k | auto idx = TypeID<Request>::localID; \ | 236 | 565k | if (caches[idx].isNull()) { \ | 237 | 224 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 224 | } \ | 239 | 565k | return caches[idx].template get<Request>(); \ | 240 | 565k | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ParseMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 624k | getCache() { \ | 231 | 624k | auto &caches = Name##ZoneCache; \ | 232 | 624k | if (caches.empty()) { \ | 233 | 1 | caches.resize(ZoneTypes::Count); \ | 234 | 1 | } \ | 235 | 624k | auto idx = TypeID<Request>::localID; \ | 236 | 624k | if (caches[idx].isNull()) { \ | 237 | 177 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 177 | } \ | 239 | 624k | return caches[idx].template get<Request>(); \ | 240 | 624k | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17ABIMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 36.0k | getCache() { \ | 231 | 36.0k | auto &caches = Name##ZoneCache; \ | 232 | 36.0k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 36.0k | auto idx = TypeID<Request>::localID; \ | 236 | 36.0k | if (caches[idx].isNull()) { \ | 237 | 174 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 174 | } \ | 239 | 36.0k | return caches[idx].template get<Request>(); \ | 240 | 36.0k | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17AllMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 42.2k | getCache() { \ | 231 | 42.2k | auto &caches = Name##ZoneCache; \ | 232 | 42.2k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 42.2k | auto idx = TypeID<Request>::localID; \ | 236 | 42.2k | if (caches[idx].isNull()) { \ | 237 | 138 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 138 | } \ | 239 | 42.2k | return caches[idx].template get<Request>(); \ | 240 | 42.2k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_48GetDistributedActorArgumentDecodingMethodRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_43GetDistributedActorInvocationDecoderRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_49GetDistributedRemoteCallTargetInitFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_51GetDistributedRemoteCallArgumentInitFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_50GetDistributedActorSystemRemoteCallFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 24 | getCache() { \ | 231 | 24 | auto &caches = Name##ZoneCache; \ | 232 | 24 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 24 | auto idx = TypeID<Request>::localID; \ | 236 | 24 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 24 | return caches[idx].template get<Request>(); \ | 240 | 24 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26GetDistributedThunkRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40GetDistributedActorSystemPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_36GetDistributedActorIDPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 60 | getCache() { \ | 231 | 60 | auto &caches = Name##ZoneCache; \ | 232 | 60 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 60 | auto idx = TypeID<Request>::localID; \ | 236 | 60 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 60 | return caches[idx].template get<Request>(); \ | 240 | 60 | } |
DocComment.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27SemanticBriefCommentRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 5.68k | getCache() { \ | 231 | 5.68k | auto &caches = Name##ZoneCache; \ | 232 | 5.68k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 5.68k | auto idx = TypeID<Request>::localID; \ | 236 | 5.68k | if (caches[idx].isNull()) { \ | 237 | 19 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 19 | } \ | 239 | 5.68k | return caches[idx].template get<Request>(); \ | 240 | 5.68k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_36PolymorphicEffectRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Effects.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28PolymorphicEffectKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 340k | getCache() { \ | 231 | 340k | auto &caches = Name##ZoneCache; \ | 232 | 340k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 340k | auto idx = TypeID<Request>::localID; \ | 236 | 340k | if (caches[idx].isNull()) { \ | 237 | 184 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 184 | } \ | 239 | 340k | return caches[idx].template get<Request>(); \ | 240 | 340k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27ConformanceHasEffectRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Expr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ClosureEffectsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.44M | getCache() { \ | 231 | 1.44M | auto &caches = Name##ZoneCache; \ | 232 | 1.44M | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.44M | auto idx = TypeID<Request>::localID; \ | 236 | 1.44M | if (caches[idx].isNull()) { \ | 237 | 117 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 117 | } \ | 239 | 1.44M | return caches[idx].template get<Request>(); \ | 240 | 1.44M | } |
GenericSignature.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31AbstractGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 50.5k | getCache() { \ | 231 | 50.5k | auto &caches = Name##ZoneCache; \ | 232 | 50.5k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 50.5k | auto idx = TypeID<Request>::localID; \ | 236 | 50.5k | if (caches[idx].isNull()) { \ | 237 | 172 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 172 | } \ | 239 | 50.5k | return caches[idx].template get<Request>(); \ | 240 | 50.5k | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22IsNonUserModuleRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 75 | getCache() { \ | 231 | 75 | auto &caches = Name##ZoneCache; \ | 232 | 75 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 75 | auto idx = TypeID<Request>::localID; \ | 236 | 75 | if (caches[idx].isNull()) { \ | 237 | 11 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 11 | } \ | 239 | 75 | return caches[idx].template get<Request>(); \ | 240 | 75 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28ModuleImplicitImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.97k | getCache() { \ | 231 | 1.97k | auto &caches = Name##ZoneCache; \ | 232 | 1.97k | if (caches.empty()) { \ | 233 | 268 | caches.resize(ZoneTypes::Count); \ | 234 | 268 | } \ | 235 | 1.97k | auto idx = TypeID<Request>::localID; \ | 236 | 1.97k | if (caches[idx].isNull()) { \ | 237 | 268 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 268 | } \ | 239 | 1.97k | return caches[idx].template get<Request>(); \ | 240 | 1.97k | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25PrimarySourceFilesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.56k | getCache() { \ | 231 | 1.56k | auto &caches = Name##ZoneCache; \ | 232 | 1.56k | if (caches.empty()) { \ | 233 | 1 | caches.resize(ZoneTypes::Count); \ | 234 | 1 | } \ | 235 | 1.56k | auto idx = TypeID<Request>::localID; \ | 236 | 1.56k | if (caches[idx].isNull()) { \ | 237 | 210 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 210 | } \ | 239 | 1.56k | return caches[idx].template get<Request>(); \ | 240 | 1.56k | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26MangleLocalTypeDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 27 | getCache() { \ | 231 | 27 | auto &caches = Name##ZoneCache; \ | 232 | 27 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 27 | auto idx = TypeID<Request>::localID; \ | 236 | 27 | if (caches[idx].isNull()) { \ | 237 | 3 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 3 | } \ | 239 | 27 | return caches[idx].template get<Request>(); \ | 240 | 27 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ExpandExtensionMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.38M | getCache() { \ | 231 | 2.38M | auto &caches = Name##ZoneCache; \ | 232 | 2.38M | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.38M | auto idx = TypeID<Request>::localID; \ | 236 | 2.38M | if (caches[idx].isNull()) { \ | 237 | 246 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 246 | } \ | 239 | 2.38M | return caches[idx].template get<Request>(); \ | 240 | 2.38M | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_39ImplicitKnownProtocolConformanceRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 49.7k | getCache() { \ | 231 | 49.7k | auto &caches = Name##ZoneCache; \ | 232 | 49.7k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 49.7k | auto idx = TypeID<Request>::localID; \ | 236 | 49.7k | if (caches[idx].isNull()) { \ | 237 | 185 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 185 | } \ | 239 | 49.7k | return caches[idx].template get<Request>(); \ | 240 | 49.7k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_41GetDistributedActorImplicitCodableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_16SPIGroupsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 3.37M | getCache() { \ | 231 | 3.37M | auto &caches = Name##ZoneCache; \ | 232 | 3.37M | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 3.37M | auto idx = TypeID<Request>::localID; \ | 236 | 3.37M | if (caches[idx].isNull()) { \ | 237 | 235 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 235 | } \ | 239 | 3.37M | return caches[idx].template get<Request>(); \ | 240 | 3.37M | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25ModuleLibraryLevelRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.14k | getCache() { \ | 231 | 1.14k | auto &caches = Name##ZoneCache; \ | 232 | 1.14k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.14k | auto idx = TypeID<Request>::localID; \ | 236 | 1.14k | if (caches[idx].isNull()) { \ | 237 | 78 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 78 | } \ | 239 | 1.14k | return caches[idx].template get<Request>(); \ | 240 | 1.14k | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25ParseTopLevelDeclsRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 72.9k | getCache() { \ | 231 | 72.9k | auto &caches = Name##ZoneCache; \ | 232 | 72.9k | if (caches.empty()) { \ | 233 | 256 | caches.resize(ZoneTypes::Count); \ | 234 | 256 | } \ | 235 | 72.9k | auto idx = TypeID<Request>::localID; \ | 236 | 72.9k | if (caches[idx].isNull()) { \ | 237 | 256 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 256 | } \ | 239 | 72.9k | return caches[idx].template get<Request>(); \ | 240 | 72.9k | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25ExportedSourceFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.72k | getCache() { \ | 231 | 1.72k | auto &caches = Name##ZoneCache; \ | 232 | 1.72k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.72k | auto idx = TypeID<Request>::localID; \ | 236 | 1.72k | if (caches[idx].isNull()) { \ | 237 | 240 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 240 | } \ | 239 | 1.72k | return caches[idx].template get<Request>(); \ | 240 | 1.72k | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22GetSourceFileAsyncNodeENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 10.6k | getCache() { \ | 231 | 10.6k | auto &caches = Name##ZoneCache; \ | 232 | 10.6k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 10.6k | auto idx = TypeID<Request>::localID; \ | 236 | 10.6k | if (caches[idx].isNull()) { \ | 237 | 100 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 100 | } \ | 239 | 10.6k | return caches[idx].template get<Request>(); \ | 240 | 10.6k | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_35ExpandSynthesizedMemberMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 45.0k | getCache() { \ | 231 | 45.0k | auto &caches = Name##ZoneCache; \ | 232 | 45.0k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 45.0k | auto idx = TypeID<Request>::localID; \ | 236 | 45.0k | if (caches[idx].isNull()) { \ | 237 | 171 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 171 | } \ | 239 | 45.0k | return caches[idx].template get<Request>(); \ | 240 | 45.0k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ExpandExtensionMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv NameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40PotentialMacroExpansionsInContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 233k | getCache() { \ | 231 | 233k | auto &caches = Name##ZoneCache; \ | 232 | 233k | if (caches.empty()) { \ | 233 | 249 | caches.resize(ZoneTypes::Count); \ | 234 | 249 | } \ | 235 | 233k | auto idx = TypeID<Request>::localID; \ | 236 | 233k | if (caches[idx].isNull()) { \ | 237 | 252 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 252 | } \ | 239 | 233k | return caches[idx].template get<Request>(); \ | 240 | 233k | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30IsCallAsFunctionNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 420 | getCache() { \ | 231 | 420 | auto &caches = Name##ZoneCache; \ | 232 | 420 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 420 | auto idx = TypeID<Request>::localID; \ | 236 | 420 | if (caches[idx].isNull()) { \ | 237 | 21 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 21 | } \ | 239 | 420 | return caches[idx].template get<Request>(); \ | 240 | 420 | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_38HasDynamicMemberLookupAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 106k | getCache() { \ | 231 | 106k | auto &caches = Name##ZoneCache; \ | 232 | 106k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 106k | auto idx = TypeID<Request>::localID; \ | 236 | 106k | if (caches[idx].isNull()) { \ | 237 | 151 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 151 | } \ | 239 | 106k | return caches[idx].template get<Request>(); \ | 240 | 106k | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_34HasDynamicCallableAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 689 | getCache() { \ | 231 | 689 | auto &caches = Name##ZoneCache; \ | 232 | 689 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 689 | auto idx = TypeID<Request>::localID; \ | 236 | 689 | if (caches[idx].isNull()) { \ | 237 | 13 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 13 | } \ | 239 | 689 | return caches[idx].template get<Request>(); \ | 240 | 689 | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LookupInfixOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 22.5k | getCache() { \ | 231 | 22.5k | auto &caches = Name##ZoneCache; \ | 232 | 22.5k | if (caches.empty()) { \ | 233 | 1 | caches.resize(ZoneTypes::Count); \ | 234 | 1 | } \ | 235 | 22.5k | auto idx = TypeID<Request>::localID; \ | 236 | 22.5k | if (caches[idx].isNull()) { \ | 237 | 162 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 162 | } \ | 239 | 22.5k | return caches[idx].template get<Request>(); \ | 240 | 22.5k | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27LookupPrefixOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 32 | getCache() { \ | 231 | 32 | auto &caches = Name##ZoneCache; \ | 232 | 32 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 32 | auto idx = TypeID<Request>::localID; \ | 236 | 32 | if (caches[idx].isNull()) { \ | 237 | 6 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 6 | } \ | 239 | 32 | return caches[idx].template get<Request>(); \ | 240 | 32 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28LookupPostfixOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28LookupPrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 8.05k | getCache() { \ | 231 | 8.05k | auto &caches = Name##ZoneCache; \ | 232 | 8.05k | if (caches.empty()) { \ | 233 | 2 | caches.resize(ZoneTypes::Count); \ | 234 | 2 | } \ | 235 | 8.05k | auto idx = TypeID<Request>::localID; \ | 236 | 8.05k | if (caches[idx].isNull()) { \ | 237 | 113 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 113 | } \ | 239 | 8.05k | return caches[idx].template get<Request>(); \ | 240 | 8.05k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30ConditionalRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 613k | getCache() { \ | 231 | 613k | auto &caches = Name##ZoneCache; \ | 232 | 613k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 613k | auto idx = TypeID<Request>::localID; \ | 236 | 613k | if (caches[idx].isNull()) { \ | 237 | 215 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 215 | } \ | 239 | 613k | return caches[idx].template get<Request>(); \ | 240 | 613k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_37LookupAllConformancesInContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 184k | getCache() { \ | 231 | 184k | auto &caches = Name##ZoneCache; \ | 232 | 184k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 184k | auto idx = TypeID<Request>::localID; \ | 236 | 184k | if (caches[idx].isNull()) { \ | 237 | 195 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 195 | } \ | 239 | 184k | return caches[idx].template get<Request>(); \ | 240 | 184k | } |
RawComment.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17RawCommentRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 31.2k | getCache() { \ | 231 | 31.2k | auto &caches = Name##ZoneCache; \ | 232 | 31.2k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 31.2k | auto idx = TypeID<Request>::localID; \ | 236 | 31.2k | if (caches[idx].isNull()) { \ | 237 | 32 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 32 | } \ | 239 | 31.2k | return caches[idx].template get<Request>(); \ | 240 | 31.2k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31AbstractGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Stmt.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24IsSingleValueStmtRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 38.5k | getCache() { \ | 231 | 38.5k | auto &caches = Name##ZoneCache; \ | 232 | 38.5k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 38.5k | auto idx = TypeID<Request>::localID; \ | 236 | 38.5k | if (caches[idx].isNull()) { \ | 237 | 172 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 172 | } \ | 239 | 38.5k | return caches[idx].template get<Request>(); \ | 240 | 38.5k | } |
Stmt.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_18BreakTargetRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.19k | getCache() { \ | 231 | 1.19k | auto &caches = Name##ZoneCache; \ | 232 | 1.19k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.19k | auto idx = TypeID<Request>::localID; \ | 236 | 1.19k | if (caches[idx].isNull()) { \ | 237 | 14 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 14 | } \ | 239 | 1.19k | return caches[idx].template get<Request>(); \ | 240 | 1.19k | } |
Stmt.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ContinueTargetRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 592 | getCache() { \ | 231 | 592 | auto &caches = Name##ZoneCache; \ | 232 | 592 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 592 | auto idx = TypeID<Request>::localID; \ | 236 | 592 | if (caches[idx].isNull()) { \ | 237 | 12 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 12 | } \ | 239 | 592 | return caches[idx].template get<Request>(); \ | 240 | 592 | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_20IsNoncopyableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckRequests.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_18RequirementRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 53.1k | getCache() { \ | 231 | 53.1k | auto &caches = Name##ZoneCache; \ | 232 | 53.1k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 53.1k | auto idx = TypeID<Request>::localID; \ | 236 | 53.1k | if (caches[idx].isNull()) { \ | 237 | 111 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 111 | } \ | 239 | 53.1k | return caches[idx].template get<Request>(); \ | 240 | 53.1k | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40ExpandChildTypeRefinementContextsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 568k | getCache() { \ | 231 | 568k | auto &caches = Name##ZoneCache; \ | 232 | 568k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 568k | auto idx = TypeID<Request>::localID; \ | 236 | 568k | if (caches[idx].isNull()) { \ | 237 | 187 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 187 | } \ | 239 | 568k | return caches[idx].template get<Request>(); \ | 240 | 568k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_20USRGenerationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv |
241 | | #include "swift/Basic/TypeIDZones.def" |
242 | | #undef SWIFT_TYPEID_ZONE |
243 | | |
244 | | public: |
245 | | template <typename Request> |
246 | | typename llvm::DenseMap<RequestKey<Request>, |
247 | | typename Request::OutputType>::const_iterator |
248 | 25.4M | find_as(const Request &req) { |
249 | 25.4M | auto *cache = getCache<Request>(); |
250 | 25.4M | return cache->find_as(req); |
251 | 25.4M | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 22.3k | find_as(const Request &req) { | 249 | 22.3k | auto *cache = getCache<Request>(); | 250 | 22.3k | return cache->find_as(req); | 251 | 22.3k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24IDEInspectionFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24ConstantValueInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Common.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28TangentStoredPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.02k | find_as(const Request &req) { | 249 | 1.02k | auto *cache = getCache<Request>(); | 250 | 1.02k | return cache->find_as(req); | 251 | 1.02k | } |
Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26ResolveProtocolNameRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29CollectOverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24TypeRelationCheckRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28PreCheckResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ CSRanking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_32CompareDeclSpecializationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 45.3k | find_as(const Request &req) { | 249 | 45.3k | auto *cache = getCache<Request>(); | 250 | 45.3k | return cache->find_as(req); | 251 | 45.3k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29EnumElementExprPatternRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ CSStep.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25IsDeclRefinementOfRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 9.44k | find_as(const Request &req) { | 249 | 9.44k | auto *cache = getCache<Request>(); | 250 | 9.44k | return cache->find_as(req); | 251 | 9.44k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_35HasUserDefinedDesignatedInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 2.93k | find_as(const Request &req) { | 249 | 2.93k | auto *cache = getCache<Request>(); | 250 | 2.93k | return cache->find_as(req); | 251 | 2.93k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_44AreAllStoredPropertiesDefaultInitableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 885 | find_as(const Request &req) { | 249 | 885 | auto *cache = getCache<Request>(); | 250 | 885 | return cache->find_as(req); | 251 | 885 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ ConstraintSystem.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31ClosureHasExplicitResultRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 818 | find_as(const Request &req) { | 249 | 818 | auto *cache = getCache<Request>(); | 250 | 818 | return cache->find_as(req); | 251 | 818 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28IsCCompatibleFuncDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckDistributed.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_35DistributedModuleIsAvailableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 32 | find_as(const Request &req) { | 249 | 32 | auto *cache = getCache<Request>(); | 250 | 32 | return cache->find_as(req); | 251 | 32 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31CheckDistributedFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30ValidatePrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 3.79k | find_as(const Request &req) { | 249 | 3.79k | auto *cache = getCache<Request>(); | 250 | 3.79k | return cache->find_as(req); | 251 | 3.79k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 13.6k | find_as(const Request &req) { | 249 | 13.6k | auto *cache = getCache<Request>(); | 250 | 13.6k | return cache->find_as(req); | 251 | 13.6k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_34TypeCheckObjCImplementationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22ApplyAccessNoteRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 326k | find_as(const Request &req) { | 249 | 326k | auto *cache = getCache<Request>(); | 250 | 326k | return cache->find_as(req); | 251 | 326k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 12 | find_as(const Request &req) { | 249 | 12 | auto *cache = getCache<Request>(); | 250 | 12 | return cache->find_as(req); | 251 | 12 | } |
TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25CompilerPluginLoadRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 12 | find_as(const Request &req) { | 249 | 12 | auto *cache = getCache<Request>(); | 250 | 12 | return cache->find_as(req); | 251 | 12 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckPattern.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_18PatternTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 36.4k | find_as(const Request &req) { | 249 | 36.4k | auto *cache = getCache<Request>(); | 250 | 36.4k | return cache->find_as(req); | 251 | 36.4k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 3.17k | find_as(const Request &req) { | 249 | 3.17k | auto *cache = getCache<Request>(); | 250 | 3.17k | return cache->find_as(req); | 251 | 3.17k | } |
TypeCheckStmt.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 20.2k | find_as(const Request &req) { | 249 | 20.2k | auto *cache = getCache<Request>(); | 250 | 20.2k | return cache->find_as(req); | 251 | 20.2k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_32PropertyWrapperLValuenessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 126 | find_as(const Request &req) { | 249 | 126 | auto *cache = getCache<Request>(); | 250 | 126 | return cache->find_as(req); | 251 | 126 | } |
TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_20ExpandAccessorMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 28.0k | find_as(const Request &req) { | 249 | 28.0k | auto *cache = getCache<Request>(); | 250 | 28.0k | return cache->find_as(req); | 251 | 28.0k | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_49CheckInconsistentImplementationOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 827 | find_as(const Request &req) { | 249 | 827 | auto *cache = getCache<Request>(); | 250 | 827 | return cache->find_as(req); | 251 | 827 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_38CheckInconsistentSPIOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 827 | find_as(const Request &req) { | 249 | 827 | auto *cache = getCache<Request>(); | 250 | 827 | return cache->find_as(req); | 251 | 827 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_36CheckInconsistentAccessLevelOnImportEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 827 | find_as(const Request &req) { | 249 | 827 | auto *cache = getCache<Request>(); | 250 | 827 | return cache->find_as(req); | 251 | 827 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_41CheckInconsistentWeakLinkedImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 827 | find_as(const Request &req) { | 249 | 827 | auto *cache = getCache<Request>(); | 250 | 827 | return cache->find_as(req); | 251 | 827 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 7.99k | find_as(const Request &req) { | 249 | 7.99k | auto *cache = getCache<Request>(); | 250 | 7.99k | return cache->find_as(req); | 251 | 7.99k | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ ASTContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 4 | find_as(const Request &req) { | 249 | 4 | auto *cache = getCache<Request>(); | 250 | 4 | return cache->find_as(req); | 251 | 4 | } |
ASTContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 4 | find_as(const Request &req) { | 249 | 4 | auto *cache = getCache<Request>(); | 250 | 4 | return cache->find_as(req); | 251 | 4 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ ASTContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 4 | find_as(const Request &req) { | 249 | 4 | auto *cache = getCache<Request>(); | 250 | 4 | return cache->find_as(req); | 251 | 4 | } |
ASTContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 9 | find_as(const Request &req) { | 249 | 9 | auto *cache = getCache<Request>(); | 250 | 9 | return cache->find_as(req); | 251 | 9 | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 40 | find_as(const Request &req) { | 249 | 40 | auto *cache = getCache<Request>(); | 250 | 40 | return cache->find_as(req); | 251 | 40 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30TypeEraserHasViableInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Attr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31SpecializeAttrTargetDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 4.20k | find_as(const Request &req) { | 249 | 4.20k | auto *cache = getCache<Request>(); | 250 | 4.20k | return cache->find_as(req); | 251 | 4.20k | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_33DerivativeAttrOriginalDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 2.90k | find_as(const Request &req) { | 249 | 2.90k | auto *cache = getCache<Request>(); | 250 | 2.90k | return cache->find_as(req); | 251 | 2.90k | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29ImplementsAttrProtocolRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 200 | find_as(const Request &req) { | 249 | 200 | auto *cache = getCache<Request>(); | 250 | 200 | return cache->find_as(req); | 251 | 200 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_38InitAccessorReferencedVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Availability.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_33SemanticAvailableRangeAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 914 | find_as(const Request &req) { | 249 | 914 | auto *cache = getCache<Request>(); | 250 | 914 | return cache->find_as(req); | 251 | 914 | } |
Availability.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30SemanticUnavailableAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 239k | find_as(const Request &req) { | 249 | 239k | auto *cache = getCache<Request>(); | 250 | 239k | return cache->find_as(req); | 251 | 239k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27ExpandMemberAttributeMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.13M | find_as(const Request &req) { | 249 | 1.13M | auto *cache = getCache<Request>(); | 250 | 1.13M | return cache->find_as(req); | 251 | 1.13M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 437k | find_as(const Request &req) { | 249 | 437k | auto *cache = getCache<Request>(); | 250 | 437k | return cache->find_as(req); | 251 | 437k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 636 | find_as(const Request &req) { | 249 | 636 | auto *cache = getCache<Request>(); | 250 | 636 | return cache->find_as(req); | 251 | 636 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 3.18M | find_as(const Request &req) { | 249 | 3.18M | auto *cache = getCache<Request>(); | 250 | 3.18M | return cache->find_as(req); | 251 | 3.18M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25ScopedImportLookupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_19ExtendedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 33.1k | find_as(const Request &req) { | 249 | 33.1k | auto *cache = getCache<Request>(); | 250 | 33.1k | return cache->find_as(req); | 251 | 33.1k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 9.95k | find_as(const Request &req) { | 249 | 9.95k | auto *cache = getCache<Request>(); | 250 | 9.95k | return cache->find_as(req); | 251 | 9.95k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 15.4k | find_as(const Request &req) { | 249 | 15.4k | auto *cache = getCache<Request>(); | 250 | 15.4k | return cache->find_as(req); | 251 | 15.4k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_23OpaqueResultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 14 | find_as(const Request &req) { | 249 | 14 | auto *cache = getCache<Request>(); | 250 | 14 | return cache->find_as(req); | 251 | 14 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30DynamicallyReplacedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 273k | find_as(const Request &req) { | 249 | 273k | auto *cache = getCache<Request>(); | 250 | 273k | return cache->find_as(req); | 251 | 273k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_23StoredPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 5.93M | find_as(const Request &req) { | 249 | 5.93M | auto *cache = getCache<Request>(); | 250 | 5.93M | return cache->find_as(req); | 251 | 5.93M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29InitAccessorPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 3.21k | find_as(const Request &req) { | 249 | 3.21k | auto *cache = getCache<Request>(); | 250 | 3.21k | return cache->find_as(req); | 251 | 3.21k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31MemberwiseInitPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.88k | find_as(const Request &req) { | 249 | 1.88k | auto *cache = getCache<Request>(); | 250 | 1.88k | return cache->find_as(req); | 251 | 1.88k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_40StoredPropertiesAndMissingMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 5.13k | find_as(const Request &req) { | 249 | 5.13k | auto *cache = getCache<Request>(); | 250 | 5.13k | return cache->find_as(req); | 251 | 5.13k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30PropertyWrapperTypeInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.23k | find_as(const Request &req) { | 249 | 1.23k | auto *cache = getCache<Request>(); | 250 | 1.23k | return cache->find_as(req); | 251 | 1.23k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_14IsActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.42M | find_as(const Request &req) { | 249 | 1.42M | auto *cache = getCache<Request>(); | 250 | 1.42M | return cache->find_as(req); | 251 | 1.42M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25IsDistributedActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 377k | find_as(const Request &req) { | 249 | 377k | auto *cache = getCache<Request>(); | 250 | 377k | return cache->find_as(req); | 251 | 377k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21StructuralTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 37 | find_as(const Request &req) { | 249 | 37 | auto *cache = getCache<Request>(); | 250 | 37 | return cache->find_as(req); | 251 | 37 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_18EnumRawTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 11.0k | find_as(const Request &req) { | 249 | 11.0k | auto *cache = getCache<Request>(); | 250 | 11.0k | return cache->find_as(req); | 251 | 11.0k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24HasMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.63k | find_as(const Request &req) { | 249 | 1.63k | auto *cache = getCache<Request>(); | 250 | 1.63k | return cache->find_as(req); | 251 | 1.63k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31SynthesizeMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 775 | find_as(const Request &req) { | 249 | 775 | auto *cache = getCache<Request>(); | 250 | 775 | return cache->find_as(req); | 251 | 775 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_37ResolveEffectiveMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.56k | find_as(const Request &req) { | 249 | 1.56k | auto *cache = getCache<Request>(); | 250 | 1.56k | return cache->find_as(req); | 251 | 1.56k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21HasDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.54k | find_as(const Request &req) { | 249 | 1.54k | auto *cache = getCache<Request>(); | 250 | 1.54k | return cache->find_as(req); | 251 | 1.54k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28SynthesizeDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 315 | find_as(const Request &req) { | 249 | 315 | auto *cache = getCache<Request>(); | 250 | 315 | return cache->find_as(req); | 251 | 315 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26GlobalActorInstanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 113 | find_as(const Request &req) { | 249 | 113 | auto *cache = getCache<Request>(); | 250 | 113 | return cache->find_as(req); | 251 | 113 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21IsDefaultActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 4.30k | find_as(const Request &req) { | 249 | 4.30k | auto *cache = getCache<Request>(); | 250 | 4.30k | return cache->find_as(req); | 251 | 4.30k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25ClassAncestryFlagsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 14.5k | find_as(const Request &req) { | 249 | 14.5k | auto *cache = getCache<Request>(); | 250 | 14.5k | return cache->find_as(req); | 251 | 14.5k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 676 | find_as(const Request &req) { | 249 | 676 | auto *cache = getCache<Request>(); | 250 | 676 | return cache->find_as(req); | 251 | 676 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29PrimaryAssociatedTypesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 6.75k | find_as(const Request &req) { | 249 | 6.75k | auto *cache = getCache<Request>(); | 250 | 6.75k | return cache->find_as(req); | 251 | 6.75k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29StructuralRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 874 | find_as(const Request &req) { | 249 | 874 | auto *cache = getCache<Request>(); | 250 | 874 | return cache->find_as(req); | 251 | 874 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28TypeAliasRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 437 | find_as(const Request &req) { | 249 | 437 | auto *cache = getCache<Request>(); | 250 | 437 | return cache->find_as(req); | 251 | 437 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27ProtocolDependenciesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 146k | find_as(const Request &req) { | 249 | 146k | auto *cache = getCache<Request>(); | 250 | 146k | return cache->find_as(req); | 251 | 146k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 669 | find_as(const Request &req) { | 249 | 669 | auto *cache = getCache<Request>(); | 250 | 669 | return cache->find_as(req); | 251 | 669 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_17HasStorageRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.14M | find_as(const Request &req) { | 249 | 1.14M | auto *cache = getCache<Request>(); | 250 | 1.14M | return cache->find_as(req); | 251 | 1.14M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22HasInitAccessorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 258k | find_as(const Request &req) { | 249 | 258k | auto *cache = getCache<Request>(); | 250 | 258k | return cache->find_as(req); | 251 | 258k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27DefaultInitializerIsolationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 72.2k | find_as(const Request &req) { | 249 | 72.2k | auto *cache = getCache<Request>(); | 250 | 72.2k | return cache->find_as(req); | 251 | 72.2k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 2.93M | find_as(const Request &req) { | 249 | 2.93M | auto *cache = getCache<Request>(); | 250 | 2.93M | return cache->find_as(req); | 251 | 2.93M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_34AttachedPropertyWrapperTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.27k | find_as(const Request &req) { | 249 | 1.27k | auto *cache = getCache<Request>(); | 250 | 1.27k | return cache->find_as(req); | 251 | 1.27k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_41PropertyWrapperBackingPropertyTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.28k | find_as(const Request &req) { | 249 | 1.28k | auto *cache = getCache<Request>(); | 250 | 1.28k | return cache->find_as(req); | 251 | 1.28k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_40PropertyWrapperAuxiliaryVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 91.0k | find_as(const Request &req) { | 249 | 91.0k | auto *cache = getCache<Request>(); | 250 | 91.0k | return cache->find_as(req); | 251 | 91.0k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_37PropertyWrapperInitializerInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 27.2k | find_as(const Request &req) { | 249 | 27.2k | auto *cache = getCache<Request>(); | 250 | 27.2k | return cache->find_as(req); | 251 | 27.2k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_32PropertyWrapperMutabilityRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 44.6k | find_as(const Request &req) { | 249 | 44.6k | auto *cache = getCache<Request>(); | 250 | 44.6k | return cache->find_as(req); | 251 | 44.6k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26LazyStoragePropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 16 | find_as(const Request &req) { | 249 | 16 | auto *cache = getCache<Request>(); | 250 | 16 | return cache->find_as(req); | 251 | 16 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24ResultBuilderTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 37.8k | find_as(const Request &req) { | 249 | 37.8k | auto *cache = getCache<Request>(); | 250 | 37.8k | return cache->find_as(req); | 251 | 37.8k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28AttachedResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 81.4k | find_as(const Request &req) { | 249 | 81.4k | auto *cache = getCache<Request>(); | 250 | 81.4k | return cache->find_as(req); | 251 | 81.4k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 787 | find_as(const Request &req) { | 249 | 787 | auto *cache = getCache<Request>(); | 250 | 787 | return cache->find_as(req); | 251 | 787 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_23FunctionOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 3.47k | find_as(const Request &req) { | 249 | 3.47k | auto *cache = getCache<Request>(); | 250 | 3.47k | return cache->find_as(req); | 251 | 3.47k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_19SimpleDidSetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_15InitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 50.5k | find_as(const Request &req) { | 249 | 50.5k | auto *cache = getCache<Request>(); | 250 | 50.5k | return cache->find_as(req); | 251 | 50.5k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_19BodyInitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 2.98k | find_as(const Request &req) { | 249 | 2.98k | auto *cache = getCache<Request>(); | 250 | 2.98k | return cache->find_as(req); | 251 | 2.98k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30OperatorPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 8.65k | find_as(const Request &req) { | 249 | 8.65k | auto *cache = getCache<Request>(); | 250 | 8.65k | return cache->find_as(req); | 251 | 8.65k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ActorIsolationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.63M | find_as(const Request &req) { | 249 | 1.63M | auto *cache = getCache<Request>(); | 250 | 1.63M | return cache->find_as(req); | 251 | 1.63M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22MacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 15 | find_as(const Request &req) { | 249 | 15 | auto *cache = getCache<Request>(); | 250 | 15 | return cache->find_as(req); | 251 | 15 | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26FragileFunctionKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 248k | find_as(const Request &req) { | 249 | 248k | auto *cache = getCache<Request>(); | 250 | 248k | return cache->find_as(req); | 251 | 248k | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_19ParseMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 306k | find_as(const Request &req) { | 249 | 306k | auto *cache = getCache<Request>(); | 250 | 306k | return cache->find_as(req); | 251 | 306k | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_17ABIMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 13.6k | find_as(const Request &req) { | 249 | 13.6k | auto *cache = getCache<Request>(); | 250 | 13.6k | return cache->find_as(req); | 251 | 13.6k | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_17AllMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 17.8k | find_as(const Request &req) { | 249 | 17.8k | auto *cache = getCache<Request>(); | 250 | 17.8k | return cache->find_as(req); | 251 | 17.8k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_48GetDistributedActorArgumentDecodingMethodRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_43GetDistributedActorInvocationDecoderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 8 | find_as(const Request &req) { | 249 | 8 | auto *cache = getCache<Request>(); | 250 | 8 | return cache->find_as(req); | 251 | 8 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26GetDistributedThunkRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_40GetDistributedActorSystemPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_36GetDistributedActorIDPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 28 | find_as(const Request &req) { | 249 | 28 | auto *cache = getCache<Request>(); | 250 | 28 | return cache->find_as(req); | 251 | 28 | } |
DocComment.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27SemanticBriefCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.89k | find_as(const Request &req) { | 249 | 1.89k | auto *cache = getCache<Request>(); | 250 | 1.89k | return cache->find_as(req); | 251 | 1.89k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_36PolymorphicEffectRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Effects.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28PolymorphicEffectKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 160k | find_as(const Request &req) { | 249 | 160k | auto *cache = getCache<Request>(); | 250 | 160k | return cache->find_as(req); | 251 | 160k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27ConformanceHasEffectRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Expr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 720k | find_as(const Request &req) { | 249 | 720k | auto *cache = getCache<Request>(); | 250 | 720k | return cache->find_as(req); | 251 | 720k | } |
GenericSignature.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 23.4k | find_as(const Request &req) { | 249 | 23.4k | auto *cache = getCache<Request>(); | 250 | 23.4k | return cache->find_as(req); | 251 | 23.4k | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22IsNonUserModuleRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 32 | find_as(const Request &req) { | 249 | 32 | auto *cache = getCache<Request>(); | 250 | 32 | return cache->find_as(req); | 251 | 32 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28ModuleImplicitImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 855 | find_as(const Request &req) { | 249 | 855 | auto *cache = getCache<Request>(); | 250 | 855 | return cache->find_as(req); | 251 | 855 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25PrimarySourceFilesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 679 | find_as(const Request &req) { | 249 | 679 | auto *cache = getCache<Request>(); | 250 | 679 | return cache->find_as(req); | 251 | 679 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 9 | find_as(const Request &req) { | 249 | 9 | auto *cache = getCache<Request>(); | 250 | 9 | return cache->find_as(req); | 251 | 9 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.18M | find_as(const Request &req) { | 249 | 1.18M | auto *cache = getCache<Request>(); | 250 | 1.18M | return cache->find_as(req); | 251 | 1.18M | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_39ImplicitKnownProtocolConformanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 22.8k | find_as(const Request &req) { | 249 | 22.8k | auto *cache = getCache<Request>(); | 250 | 22.8k | return cache->find_as(req); | 251 | 22.8k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_41GetDistributedActorImplicitCodableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_16SPIGroupsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.61M | find_as(const Request &req) { | 249 | 1.61M | auto *cache = getCache<Request>(); | 250 | 1.61M | return cache->find_as(req); | 251 | 1.61M | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25ModuleLibraryLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 458 | find_as(const Request &req) { | 249 | 458 | auto *cache = getCache<Request>(); | 250 | 458 | return cache->find_as(req); | 251 | 458 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25ParseTopLevelDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 36.0k | find_as(const Request &req) { | 249 | 36.0k | auto *cache = getCache<Request>(); | 250 | 36.0k | return cache->find_as(req); | 251 | 36.0k | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25ExportedSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 580 | find_as(const Request &req) { | 249 | 580 | auto *cache = getCache<Request>(); | 250 | 580 | return cache->find_as(req); | 251 | 580 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22GetSourceFileAsyncNodeEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 5.25k | find_as(const Request &req) { | 249 | 5.25k | auto *cache = getCache<Request>(); | 250 | 5.25k | return cache->find_as(req); | 251 | 5.25k | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 18.2k | find_as(const Request &req) { | 249 | 18.2k | auto *cache = getCache<Request>(); | 250 | 18.2k | return cache->find_as(req); | 251 | 18.2k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ NameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 78.9k | find_as(const Request &req) { | 249 | 78.9k | auto *cache = getCache<Request>(); | 250 | 78.9k | return cache->find_as(req); | 251 | 78.9k | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30IsCallAsFunctionNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 173 | find_as(const Request &req) { | 249 | 173 | auto *cache = getCache<Request>(); | 250 | 173 | return cache->find_as(req); | 251 | 173 | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_38HasDynamicMemberLookupAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 50.8k | find_as(const Request &req) { | 249 | 50.8k | auto *cache = getCache<Request>(); | 250 | 50.8k | return cache->find_as(req); | 251 | 50.8k | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 270 | find_as(const Request &req) { | 249 | 270 | auto *cache = getCache<Request>(); | 250 | 270 | return cache->find_as(req); | 251 | 270 | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26LookupInfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 10.4k | find_as(const Request &req) { | 249 | 10.4k | auto *cache = getCache<Request>(); | 250 | 10.4k | return cache->find_as(req); | 251 | 10.4k | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27LookupPrefixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 12 | find_as(const Request &req) { | 249 | 12 | auto *cache = getCache<Request>(); | 250 | 12 | return cache->find_as(req); | 251 | 12 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28LookupPostfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28LookupPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 3.77k | find_as(const Request &req) { | 249 | 3.77k | auto *cache = getCache<Request>(); | 250 | 3.77k | return cache->find_as(req); | 251 | 3.77k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30ConditionalRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 297k | find_as(const Request &req) { | 249 | 297k | auto *cache = getCache<Request>(); | 250 | 297k | return cache->find_as(req); | 251 | 297k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_37LookupAllConformancesInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 86.0k | find_as(const Request &req) { | 249 | 86.0k | auto *cache = getCache<Request>(); | 250 | 86.0k | return cache->find_as(req); | 251 | 86.0k | } |
RawComment.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_17RawCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 11.7k | find_as(const Request &req) { | 249 | 11.7k | auto *cache = getCache<Request>(); | 250 | 11.7k | return cache->find_as(req); | 251 | 11.7k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Stmt.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24IsSingleValueStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 12.8k | find_as(const Request &req) { | 249 | 12.8k | auto *cache = getCache<Request>(); | 250 | 12.8k | return cache->find_as(req); | 251 | 12.8k | } |
Stmt.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_18BreakTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 514 | find_as(const Request &req) { | 249 | 514 | auto *cache = getCache<Request>(); | 250 | 514 | return cache->find_as(req); | 251 | 514 | } |
Stmt.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ContinueTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 255 | find_as(const Request &req) { | 249 | 255 | auto *cache = getCache<Request>(); | 250 | 255 | return cache->find_as(req); | 251 | 255 | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_20IsNoncopyableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckRequests.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_18RequirementRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 22.5k | find_as(const Request &req) { | 249 | 22.5k | auto *cache = getCache<Request>(); | 250 | 22.5k | return cache->find_as(req); | 251 | 22.5k | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_40ExpandChildTypeRefinementContextsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 271k | find_as(const Request &req) { | 249 | 271k | auto *cache = getCache<Request>(); | 250 | 271k | return cache->find_as(req); | 251 | 271k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ |
252 | | |
253 | | template <typename Request> |
254 | | typename llvm::DenseMap<RequestKey<Request>, |
255 | | typename Request::OutputType>::const_iterator |
256 | 25.4M | end() { |
257 | 25.4M | auto *cache = getCache<Request>(); |
258 | 25.4M | return cache->end(); |
259 | 25.4M | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12RequestCache3endINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12RequestCache3endINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 22.3k | end() { | 257 | 22.3k | auto *cache = getCache<Request>(); | 258 | 22.3k | return cache->end(); | 259 | 22.3k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12RequestCache3endINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12RequestCache3endINS_24IDEInspectionFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12RequestCache3endINS_24ConstantValueInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12RequestCache3endINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Common.cpp:_ZN5swift9evaluator12RequestCache3endINS_28TangentStoredPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.02k | end() { | 257 | 1.02k | auto *cache = getCache<Request>(); | 258 | 1.02k | return cache->end(); | 259 | 1.02k | } |
Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12RequestCache3endINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache3endINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache3endINS_26ResolveProtocolNameRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache3endINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache3endINS_29CollectOverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache3endINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache3endINS_24TypeRelationCheckRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12RequestCache3endINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12RequestCache3endINS_28PreCheckResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12RequestCache3endINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv CSRanking.cpp:_ZN5swift9evaluator12RequestCache3endINS_32CompareDeclSpecializationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 45.3k | end() { | 257 | 45.3k | auto *cache = getCache<Request>(); | 258 | 45.3k | return cache->end(); | 259 | 45.3k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12RequestCache3endINS_29EnumElementExprPatternRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12RequestCache3endINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv CSStep.cpp:_ZN5swift9evaluator12RequestCache3endINS_25IsDeclRefinementOfRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 9.44k | end() { | 257 | 9.44k | auto *cache = getCache<Request>(); | 258 | 9.44k | return cache->end(); | 259 | 9.44k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12RequestCache3endINS_35HasUserDefinedDesignatedInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 2.93k | end() { | 257 | 2.93k | auto *cache = getCache<Request>(); | 258 | 2.93k | return cache->end(); | 259 | 2.93k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12RequestCache3endINS_44AreAllStoredPropertiesDefaultInitableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 885 | end() { | 257 | 885 | auto *cache = getCache<Request>(); | 258 | 885 | return cache->end(); | 259 | 885 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv ConstraintSystem.cpp:_ZN5swift9evaluator12RequestCache3endINS_31ClosureHasExplicitResultRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 818 | end() { | 257 | 818 | auto *cache = getCache<Request>(); | 258 | 818 | return cache->end(); | 259 | 818 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12RequestCache3endINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12RequestCache3endINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12RequestCache3endINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache3endINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache3endINS_28IsCCompatibleFuncDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache3endINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache3endINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache3endINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache3endINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckDistributed.cpp:_ZN5swift9evaluator12RequestCache3endINS_35DistributedModuleIsAvailableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 32 | end() { | 257 | 32 | auto *cache = getCache<Request>(); | 258 | 32 | return cache->end(); | 259 | 32 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12RequestCache3endINS_31CheckDistributedFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_30ValidatePrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 3.79k | end() { | 257 | 3.79k | auto *cache = getCache<Request>(); | 258 | 3.79k | return cache->end(); | 259 | 3.79k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 13.6k | end() { | 257 | 13.6k | auto *cache = getCache<Request>(); | 258 | 13.6k | return cache->end(); | 259 | 13.6k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12RequestCache3endINS_34TypeCheckObjCImplementationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache3endINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache3endINS_22ApplyAccessNoteRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 326k | end() { | 257 | 326k | auto *cache = getCache<Request>(); | 258 | 326k | return cache->end(); | 259 | 326k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache3endINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12RequestCache3endINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache3endINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 12 | end() { | 257 | 12 | auto *cache = getCache<Request>(); | 258 | 12 | return cache->end(); | 259 | 12 | } |
TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache3endINS_25CompilerPluginLoadRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 12 | end() { | 257 | 12 | auto *cache = getCache<Request>(); | 258 | 12 | return cache->end(); | 259 | 12 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache3endINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckPattern.cpp:_ZN5swift9evaluator12RequestCache3endINS_18PatternTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 36.4k | end() { | 257 | 36.4k | auto *cache = getCache<Request>(); | 258 | 36.4k | return cache->end(); | 259 | 36.4k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12RequestCache3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12RequestCache3endINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12RequestCache3endINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12RequestCache3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 3.17k | end() { | 257 | 3.17k | auto *cache = getCache<Request>(); | 258 | 3.17k | return cache->end(); | 259 | 3.17k | } |
TypeCheckStmt.cpp:_ZN5swift9evaluator12RequestCache3endINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 20.2k | end() { | 257 | 20.2k | auto *cache = getCache<Request>(); | 258 | 20.2k | return cache->end(); | 259 | 20.2k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12RequestCache3endINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache3endINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache3endINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache3endINS_32PropertyWrapperLValuenessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 126 | end() { | 257 | 126 | auto *cache = getCache<Request>(); | 258 | 126 | return cache->end(); | 259 | 126 | } |
TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache3endINS_20ExpandAccessorMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 28.0k | end() { | 257 | 28.0k | auto *cache = getCache<Request>(); | 258 | 28.0k | return cache->end(); | 259 | 28.0k | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache3endINS_49CheckInconsistentImplementationOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 827 | end() { | 257 | 827 | auto *cache = getCache<Request>(); | 258 | 827 | return cache->end(); | 259 | 827 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache3endINS_38CheckInconsistentSPIOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 827 | end() { | 257 | 827 | auto *cache = getCache<Request>(); | 258 | 827 | return cache->end(); | 259 | 827 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache3endINS_36CheckInconsistentAccessLevelOnImportEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 827 | end() { | 257 | 827 | auto *cache = getCache<Request>(); | 258 | 827 | return cache->end(); | 259 | 827 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache3endINS_41CheckInconsistentWeakLinkedImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 827 | end() { | 257 | 827 | auto *cache = getCache<Request>(); | 258 | 827 | return cache->end(); | 259 | 827 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache3endINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 7.99k | end() { | 257 | 7.99k | auto *cache = getCache<Request>(); | 258 | 7.99k | return cache->end(); | 259 | 7.99k | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12RequestCache3endINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv ASTContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 4 | end() { | 257 | 4 | auto *cache = getCache<Request>(); | 258 | 4 | return cache->end(); | 259 | 4 | } |
ASTContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 4 | end() { | 257 | 4 | auto *cache = getCache<Request>(); | 258 | 4 | return cache->end(); | 259 | 4 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv ASTContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 4 | end() { | 257 | 4 | auto *cache = getCache<Request>(); | 258 | 4 | return cache->end(); | 259 | 4 | } |
ASTContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 9 | end() { | 257 | 9 | auto *cache = getCache<Request>(); | 258 | 9 | return cache->end(); | 259 | 9 | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache3endINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 40 | end() { | 257 | 40 | auto *cache = getCache<Request>(); | 258 | 40 | return cache->end(); | 259 | 40 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache3endINS_30TypeEraserHasViableInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Attr.cpp:_ZN5swift9evaluator12RequestCache3endINS_31SpecializeAttrTargetDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 4.20k | end() { | 257 | 4.20k | auto *cache = getCache<Request>(); | 258 | 4.20k | return cache->end(); | 259 | 4.20k | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache3endINS_33DerivativeAttrOriginalDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 2.90k | end() { | 257 | 2.90k | auto *cache = getCache<Request>(); | 258 | 2.90k | return cache->end(); | 259 | 2.90k | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache3endINS_29ImplementsAttrProtocolRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 200 | end() { | 257 | 200 | auto *cache = getCache<Request>(); | 258 | 200 | return cache->end(); | 259 | 200 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache3endINS_38InitAccessorReferencedVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Availability.cpp:_ZN5swift9evaluator12RequestCache3endINS_33SemanticAvailableRangeAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 914 | end() { | 257 | 914 | auto *cache = getCache<Request>(); | 258 | 914 | return cache->end(); | 259 | 914 | } |
Availability.cpp:_ZN5swift9evaluator12RequestCache3endINS_30SemanticUnavailableAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 239k | end() { | 257 | 239k | auto *cache = getCache<Request>(); | 258 | 239k | return cache->end(); | 259 | 239k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_27ExpandMemberAttributeMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.13M | end() { | 257 | 1.13M | auto *cache = getCache<Request>(); | 258 | 1.13M | return cache->end(); | 259 | 1.13M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 437k | end() { | 257 | 437k | auto *cache = getCache<Request>(); | 258 | 437k | return cache->end(); | 259 | 437k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 636 | end() { | 257 | 636 | auto *cache = getCache<Request>(); | 258 | 636 | return cache->end(); | 259 | 636 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 3.18M | end() { | 257 | 3.18M | auto *cache = getCache<Request>(); | 258 | 3.18M | return cache->end(); | 259 | 3.18M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_25ScopedImportLookupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_19ExtendedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 33.1k | end() { | 257 | 33.1k | auto *cache = getCache<Request>(); | 258 | 33.1k | return cache->end(); | 259 | 33.1k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 9.95k | end() { | 257 | 9.95k | auto *cache = getCache<Request>(); | 258 | 9.95k | return cache->end(); | 259 | 9.95k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 15.4k | end() { | 257 | 15.4k | auto *cache = getCache<Request>(); | 258 | 15.4k | return cache->end(); | 259 | 15.4k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_23OpaqueResultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 14 | end() { | 257 | 14 | auto *cache = getCache<Request>(); | 258 | 14 | return cache->end(); | 259 | 14 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_30DynamicallyReplacedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 273k | end() { | 257 | 273k | auto *cache = getCache<Request>(); | 258 | 273k | return cache->end(); | 259 | 273k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_23StoredPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 5.93M | end() { | 257 | 5.93M | auto *cache = getCache<Request>(); | 258 | 5.93M | return cache->end(); | 259 | 5.93M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_29InitAccessorPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 3.21k | end() { | 257 | 3.21k | auto *cache = getCache<Request>(); | 258 | 3.21k | return cache->end(); | 259 | 3.21k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_31MemberwiseInitPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.88k | end() { | 257 | 1.88k | auto *cache = getCache<Request>(); | 258 | 1.88k | return cache->end(); | 259 | 1.88k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_40StoredPropertiesAndMissingMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 5.13k | end() { | 257 | 5.13k | auto *cache = getCache<Request>(); | 258 | 5.13k | return cache->end(); | 259 | 5.13k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_30PropertyWrapperTypeInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.23k | end() { | 257 | 1.23k | auto *cache = getCache<Request>(); | 258 | 1.23k | return cache->end(); | 259 | 1.23k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_14IsActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.42M | end() { | 257 | 1.42M | auto *cache = getCache<Request>(); | 258 | 1.42M | return cache->end(); | 259 | 1.42M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_25IsDistributedActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 377k | end() { | 257 | 377k | auto *cache = getCache<Request>(); | 258 | 377k | return cache->end(); | 259 | 377k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_21StructuralTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 37 | end() { | 257 | 37 | auto *cache = getCache<Request>(); | 258 | 37 | return cache->end(); | 259 | 37 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_18EnumRawTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 11.0k | end() { | 257 | 11.0k | auto *cache = getCache<Request>(); | 258 | 11.0k | return cache->end(); | 259 | 11.0k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_24HasMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.63k | end() { | 257 | 1.63k | auto *cache = getCache<Request>(); | 258 | 1.63k | return cache->end(); | 259 | 1.63k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_31SynthesizeMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 775 | end() { | 257 | 775 | auto *cache = getCache<Request>(); | 258 | 775 | return cache->end(); | 259 | 775 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_37ResolveEffectiveMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.56k | end() { | 257 | 1.56k | auto *cache = getCache<Request>(); | 258 | 1.56k | return cache->end(); | 259 | 1.56k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_21HasDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.54k | end() { | 257 | 1.54k | auto *cache = getCache<Request>(); | 258 | 1.54k | return cache->end(); | 259 | 1.54k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_28SynthesizeDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 315 | end() { | 257 | 315 | auto *cache = getCache<Request>(); | 258 | 315 | return cache->end(); | 259 | 315 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26GlobalActorInstanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 113 | end() { | 257 | 113 | auto *cache = getCache<Request>(); | 258 | 113 | return cache->end(); | 259 | 113 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_21IsDefaultActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 4.30k | end() { | 257 | 4.30k | auto *cache = getCache<Request>(); | 258 | 4.30k | return cache->end(); | 259 | 4.30k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_25ClassAncestryFlagsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 14.5k | end() { | 257 | 14.5k | auto *cache = getCache<Request>(); | 258 | 14.5k | return cache->end(); | 259 | 14.5k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 676 | end() { | 257 | 676 | auto *cache = getCache<Request>(); | 258 | 676 | return cache->end(); | 259 | 676 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_29PrimaryAssociatedTypesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 6.75k | end() { | 257 | 6.75k | auto *cache = getCache<Request>(); | 258 | 6.75k | return cache->end(); | 259 | 6.75k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_29StructuralRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 874 | end() { | 257 | 874 | auto *cache = getCache<Request>(); | 258 | 874 | return cache->end(); | 259 | 874 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_28TypeAliasRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 437 | end() { | 257 | 437 | auto *cache = getCache<Request>(); | 258 | 437 | return cache->end(); | 259 | 437 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_27ProtocolDependenciesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 146k | end() { | 257 | 146k | auto *cache = getCache<Request>(); | 258 | 146k | return cache->end(); | 259 | 146k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 669 | end() { | 257 | 669 | auto *cache = getCache<Request>(); | 258 | 669 | return cache->end(); | 259 | 669 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_17HasStorageRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.14M | end() { | 257 | 1.14M | auto *cache = getCache<Request>(); | 258 | 1.14M | return cache->end(); | 259 | 1.14M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_22HasInitAccessorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 258k | end() { | 257 | 258k | auto *cache = getCache<Request>(); | 258 | 258k | return cache->end(); | 259 | 258k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_27DefaultInitializerIsolationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 72.2k | end() { | 257 | 72.2k | auto *cache = getCache<Request>(); | 258 | 72.2k | return cache->end(); | 259 | 72.2k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 2.93M | end() { | 257 | 2.93M | auto *cache = getCache<Request>(); | 258 | 2.93M | return cache->end(); | 259 | 2.93M | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_34AttachedPropertyWrapperTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.27k | end() { | 257 | 1.27k | auto *cache = getCache<Request>(); | 258 | 1.27k | return cache->end(); | 259 | 1.27k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_41PropertyWrapperBackingPropertyTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.28k | end() { | 257 | 1.28k | auto *cache = getCache<Request>(); | 258 | 1.28k | return cache->end(); | 259 | 1.28k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_40PropertyWrapperAuxiliaryVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 91.0k | end() { | 257 | 91.0k | auto *cache = getCache<Request>(); | 258 | 91.0k | return cache->end(); | 259 | 91.0k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_37PropertyWrapperInitializerInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 27.2k | end() { | 257 | 27.2k | auto *cache = getCache<Request>(); | 258 | 27.2k | return cache->end(); | 259 | 27.2k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_32PropertyWrapperMutabilityRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 44.6k | end() { | 257 | 44.6k | auto *cache = getCache<Request>(); | 258 | 44.6k | return cache->end(); | 259 | 44.6k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26LazyStoragePropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 16 | end() { | 257 | 16 | auto *cache = getCache<Request>(); | 258 | 16 | return cache->end(); | 259 | 16 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_24ResultBuilderTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 37.8k | end() { | 257 | 37.8k | auto *cache = getCache<Request>(); | 258 | 37.8k | return cache->end(); | 259 | 37.8k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_28AttachedResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 81.4k | end() { | 257 | 81.4k | auto *cache = getCache<Request>(); | 258 | 81.4k | return cache->end(); | 259 | 81.4k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 787 | end() { | 257 | 787 | auto *cache = getCache<Request>(); | 258 | 787 | return cache->end(); | 259 | 787 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_23FunctionOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 3.47k | end() { | 257 | 3.47k | auto *cache = getCache<Request>(); | 258 | 3.47k | return cache->end(); | 259 | 3.47k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_19SimpleDidSetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_15InitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 50.5k | end() { | 257 | 50.5k | auto *cache = getCache<Request>(); | 258 | 50.5k | return cache->end(); | 259 | 50.5k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_19BodyInitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 2.98k | end() { | 257 | 2.98k | auto *cache = getCache<Request>(); | 258 | 2.98k | return cache->end(); | 259 | 2.98k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_30OperatorPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 8.65k | end() { | 257 | 8.65k | auto *cache = getCache<Request>(); | 258 | 8.65k | return cache->end(); | 259 | 8.65k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ActorIsolationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.63M | end() { | 257 | 1.63M | auto *cache = getCache<Request>(); | 258 | 1.63M | return cache->end(); | 259 | 1.63M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_22MacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 15 | end() { | 257 | 15 | auto *cache = getCache<Request>(); | 258 | 15 | return cache->end(); | 259 | 15 | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_26FragileFunctionKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 248k | end() { | 257 | 248k | auto *cache = getCache<Request>(); | 258 | 248k | return cache->end(); | 259 | 248k | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_19ParseMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 306k | end() { | 257 | 306k | auto *cache = getCache<Request>(); | 258 | 306k | return cache->end(); | 259 | 306k | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_17ABIMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 13.6k | end() { | 257 | 13.6k | auto *cache = getCache<Request>(); | 258 | 13.6k | return cache->end(); | 259 | 13.6k | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_17AllMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 17.8k | end() { | 257 | 17.8k | auto *cache = getCache<Request>(); | 258 | 17.8k | return cache->end(); | 259 | 17.8k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_48GetDistributedActorArgumentDecodingMethodRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_43GetDistributedActorInvocationDecoderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 8 | end() { | 257 | 8 | auto *cache = getCache<Request>(); | 258 | 8 | return cache->end(); | 259 | 8 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26GetDistributedThunkRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_40GetDistributedActorSystemPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_36GetDistributedActorIDPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 28 | end() { | 257 | 28 | auto *cache = getCache<Request>(); | 258 | 28 | return cache->end(); | 259 | 28 | } |
DocComment.cpp:_ZN5swift9evaluator12RequestCache3endINS_27SemanticBriefCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.89k | end() { | 257 | 1.89k | auto *cache = getCache<Request>(); | 258 | 1.89k | return cache->end(); | 259 | 1.89k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12RequestCache3endINS_36PolymorphicEffectRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Effects.cpp:_ZN5swift9evaluator12RequestCache3endINS_28PolymorphicEffectKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 160k | end() { | 257 | 160k | auto *cache = getCache<Request>(); | 258 | 160k | return cache->end(); | 259 | 160k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12RequestCache3endINS_27ConformanceHasEffectRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12RequestCache3endINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Expr.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 720k | end() { | 257 | 720k | auto *cache = getCache<Request>(); | 258 | 720k | return cache->end(); | 259 | 720k | } |
GenericSignature.cpp:_ZN5swift9evaluator12RequestCache3endINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 23.4k | end() { | 257 | 23.4k | auto *cache = getCache<Request>(); | 258 | 23.4k | return cache->end(); | 259 | 23.4k | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_22IsNonUserModuleRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 32 | end() { | 257 | 32 | auto *cache = getCache<Request>(); | 258 | 32 | return cache->end(); | 259 | 32 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_28ModuleImplicitImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 855 | end() { | 257 | 855 | auto *cache = getCache<Request>(); | 258 | 855 | return cache->end(); | 259 | 855 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_25PrimarySourceFilesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 679 | end() { | 257 | 679 | auto *cache = getCache<Request>(); | 258 | 679 | return cache->end(); | 259 | 679 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 9 | end() { | 257 | 9 | auto *cache = getCache<Request>(); | 258 | 9 | return cache->end(); | 259 | 9 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.18M | end() { | 257 | 1.18M | auto *cache = getCache<Request>(); | 258 | 1.18M | return cache->end(); | 259 | 1.18M | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_39ImplicitKnownProtocolConformanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 22.8k | end() { | 257 | 22.8k | auto *cache = getCache<Request>(); | 258 | 22.8k | return cache->end(); | 259 | 22.8k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_41GetDistributedActorImplicitCodableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_16SPIGroupsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.61M | end() { | 257 | 1.61M | auto *cache = getCache<Request>(); | 258 | 1.61M | return cache->end(); | 259 | 1.61M | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_25ModuleLibraryLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 458 | end() { | 257 | 458 | auto *cache = getCache<Request>(); | 258 | 458 | return cache->end(); | 259 | 458 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_25ParseTopLevelDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 36.0k | end() { | 257 | 36.0k | auto *cache = getCache<Request>(); | 258 | 36.0k | return cache->end(); | 259 | 36.0k | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_25ExportedSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 580 | end() { | 257 | 580 | auto *cache = getCache<Request>(); | 258 | 580 | return cache->end(); | 259 | 580 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_22GetSourceFileAsyncNodeEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 5.25k | end() { | 257 | 5.25k | auto *cache = getCache<Request>(); | 258 | 5.25k | return cache->end(); | 259 | 5.25k | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 18.2k | end() { | 257 | 18.2k | auto *cache = getCache<Request>(); | 258 | 18.2k | return cache->end(); | 259 | 18.2k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv NameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 78.9k | end() { | 257 | 78.9k | auto *cache = getCache<Request>(); | 258 | 78.9k | return cache->end(); | 259 | 78.9k | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_30IsCallAsFunctionNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 173 | end() { | 257 | 173 | auto *cache = getCache<Request>(); | 258 | 173 | return cache->end(); | 259 | 173 | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_38HasDynamicMemberLookupAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 50.8k | end() { | 257 | 50.8k | auto *cache = getCache<Request>(); | 258 | 50.8k | return cache->end(); | 259 | 50.8k | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 270 | end() { | 257 | 270 | auto *cache = getCache<Request>(); | 258 | 270 | return cache->end(); | 259 | 270 | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_26LookupInfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 10.4k | end() { | 257 | 10.4k | auto *cache = getCache<Request>(); | 258 | 10.4k | return cache->end(); | 259 | 10.4k | } |
OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_27LookupPrefixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 12 | end() { | 257 | 12 | auto *cache = getCache<Request>(); | 258 | 12 | return cache->end(); | 259 | 12 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_28LookupPostfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_28LookupPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 3.77k | end() { | 257 | 3.77k | auto *cache = getCache<Request>(); | 258 | 3.77k | return cache->end(); | 259 | 3.77k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12RequestCache3endINS_30ConditionalRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 297k | end() { | 257 | 297k | auto *cache = getCache<Request>(); | 258 | 297k | return cache->end(); | 259 | 297k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12RequestCache3endINS_37LookupAllConformancesInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 86.0k | end() { | 257 | 86.0k | auto *cache = getCache<Request>(); | 258 | 86.0k | return cache->end(); | 259 | 86.0k | } |
RawComment.cpp:_ZN5swift9evaluator12RequestCache3endINS_17RawCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 11.7k | end() { | 257 | 11.7k | auto *cache = getCache<Request>(); | 258 | 11.7k | return cache->end(); | 259 | 11.7k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12RequestCache3endINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Stmt.cpp:_ZN5swift9evaluator12RequestCache3endINS_24IsSingleValueStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 12.8k | end() { | 257 | 12.8k | auto *cache = getCache<Request>(); | 258 | 12.8k | return cache->end(); | 259 | 12.8k | } |
Stmt.cpp:_ZN5swift9evaluator12RequestCache3endINS_18BreakTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 514 | end() { | 257 | 514 | auto *cache = getCache<Request>(); | 258 | 514 | return cache->end(); | 259 | 514 | } |
Stmt.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ContinueTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 255 | end() { | 257 | 255 | auto *cache = getCache<Request>(); | 258 | 255 | return cache->end(); | 259 | 255 | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator12RequestCache3endINS_20IsNoncopyableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckRequests.cpp:_ZN5swift9evaluator12RequestCache3endINS_18RequirementRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 22.5k | end() { | 257 | 22.5k | auto *cache = getCache<Request>(); | 258 | 22.5k | return cache->end(); | 259 | 22.5k | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_40ExpandChildTypeRefinementContextsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 271k | end() { | 257 | 271k | auto *cache = getCache<Request>(); | 258 | 271k | return cache->end(); | 259 | 271k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12RequestCache3endINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv |
260 | | |
261 | | template <typename Request> |
262 | 3.13M | void insert(Request req, typename Request::OutputType val) { |
263 | 3.13M | auto *cache = getCache<Request>(); |
264 | 3.13M | auto result = cache->insert({RequestKey<Request>(std::move(req)), |
265 | 3.13M | std::move(val)}); |
266 | 3.13M | assert(result.second && "Request result was already cached"); |
267 | 0 | (void) result; |
268 | 3.13M | } _ZN5swift9evaluator12RequestCache6insertINS_20USRGenerationRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 8.34k | void insert(Request req, typename Request::OutputType val) { | 263 | 8.34k | auto *cache = getCache<Request>(); | 264 | 8.34k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 8.34k | std::move(val)}); | 266 | 8.34k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 8.34k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_24IDEInspectionFileRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_24ConstantValueInfoRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_26CustomRefCountingOperationEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_22SymbolSourceMapRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_26ResolveProtocolNameRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_28ProvideDefaultImplForRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_29CollectOverriddenDeclsRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_23IsDeclApplicableRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_24TypeRelationCheckRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_28PreCheckResultBuilderRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_32CompareDeclSpecializationRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 13.4k | void insert(Request req, typename Request::OutputType val) { | 263 | 13.4k | auto *cache = getCache<Request>(); | 264 | 13.4k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 13.4k | std::move(val)}); | 266 | 13.4k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 13.4k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_29EnumElementExprPatternRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_25IsDeclRefinementOfRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 2.28k | void insert(Request req, typename Request::OutputType val) { | 263 | 2.28k | auto *cache = getCache<Request>(); | 264 | 2.28k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 2.28k | std::move(val)}); | 266 | 2.28k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 2.28k | } |
_ZN5swift9evaluator12RequestCache6insertINS_35HasUserDefinedDesignatedInitRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.54k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.54k | auto *cache = getCache<Request>(); | 264 | 1.54k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.54k | std::move(val)}); | 266 | 1.54k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.54k | } |
_ZN5swift9evaluator12RequestCache6insertINS_44AreAllStoredPropertiesDefaultInitableRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 847 | void insert(Request req, typename Request::OutputType val) { | 263 | 847 | auto *cache = getCache<Request>(); | 264 | 847 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 847 | std::move(val)}); | 266 | 847 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 847 | } |
_ZN5swift9evaluator12RequestCache6insertINS_31ClosureHasExplicitResultRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 734 | void insert(Request req, typename Request::OutputType val) { | 263 | 734 | auto *cache = getCache<Request>(); | 264 | 734 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 734 | std::move(val)}); | 266 | 734 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 734 | } |
_ZN5swift9evaluator12RequestCache6insertINS_28TangentStoredPropertyRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 457 | void insert(Request req, typename Request::OutputType val) { | 263 | 457 | auto *cache = getCache<Request>(); | 264 | 457 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 457 | std::move(val)}); | 266 | 457 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 457 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_28IsCCompatibleFuncDeclRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_35DistributedModuleIsAvailableRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 8 | void insert(Request req, typename Request::OutputType val) { | 263 | 8 | auto *cache = getCache<Request>(); | 264 | 8 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 8 | std::move(val)}); | 266 | 8 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 8 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_31CheckDistributedFunctionRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_30ValidatePrecedenceGroupRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 3.77k | void insert(Request req, typename Request::OutputType val) { | 263 | 3.77k | auto *cache = getCache<Request>(); | 264 | 3.77k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 3.77k | std::move(val)}); | 266 | 3.77k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 3.77k | } |
_ZN5swift9evaluator12RequestCache6insertINS_29SynthesizeMainFunctionRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 7.79k | void insert(Request req, typename Request::OutputType val) { | 263 | 7.79k | auto *cache = getCache<Request>(); | 264 | 7.79k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 7.79k | std::move(val)}); | 266 | 7.79k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 7.79k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_34TypeCheckObjCImplementationRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_22ApplyAccessNoteRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 148k | void insert(Request req, typename Request::OutputType val) { | 263 | 148k | auto *cache = getCache<Request>(); | 264 | 148k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 148k | std::move(val)}); | 266 | 148k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 148k | } |
_ZN5swift9evaluator12RequestCache6insertINS_30ExternalMacroDefinitionRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 12 | void insert(Request req, typename Request::OutputType val) { | 263 | 12 | auto *cache = getCache<Request>(); | 264 | 12 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 12 | std::move(val)}); | 266 | 12 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 12 | } |
_ZN5swift9evaluator12RequestCache6insertINS_25CompilerPluginLoadRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4 | void insert(Request req, typename Request::OutputType val) { | 263 | 4 | auto *cache = getCache<Request>(); | 264 | 4 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4 | std::move(val)}); | 266 | 4 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4 | } |
_ZN5swift9evaluator12RequestCache6insertINS_18PatternTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 21.2k | void insert(Request req, typename Request::OutputType val) { | 263 | 21.2k | auto *cache = getCache<Request>(); | 264 | 21.2k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 21.2k | std::move(val)}); | 266 | 21.2k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 21.2k | } |
_ZN5swift9evaluator12RequestCache6insertINS_24CustomAttrNominalRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 700 | void insert(Request req, typename Request::OutputType val) { | 263 | 700 | auto *cache = getCache<Request>(); | 264 | 700 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 700 | std::move(val)}); | 266 | 700 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 700 | } |
_ZN5swift9evaluator12RequestCache6insertINS_25PreCheckReturnStmtRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 20.1k | void insert(Request req, typename Request::OutputType val) { | 263 | 20.1k | auto *cache = getCache<Request>(); | 264 | 20.1k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 20.1k | std::move(val)}); | 266 | 20.1k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 20.1k | } |
_ZN5swift9evaluator12RequestCache6insertINS_32PropertyWrapperLValuenessRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 46 | void insert(Request req, typename Request::OutputType val) { | 263 | 46 | auto *cache = getCache<Request>(); | 264 | 46 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 46 | std::move(val)}); | 266 | 46 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 46 | } |
_ZN5swift9evaluator12RequestCache6insertINS_20ExpandAccessorMacrosEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 28.0k | void insert(Request req, typename Request::OutputType val) { | 263 | 28.0k | auto *cache = getCache<Request>(); | 264 | 28.0k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 28.0k | std::move(val)}); | 266 | 28.0k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 28.0k | } |
_ZN5swift9evaluator12RequestCache6insertINS_49CheckInconsistentImplementationOnlyImportsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 253 | void insert(Request req, typename Request::OutputType val) { | 263 | 253 | auto *cache = getCache<Request>(); | 264 | 253 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 253 | std::move(val)}); | 266 | 253 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 253 | } |
_ZN5swift9evaluator12RequestCache6insertINS_38CheckInconsistentSPIOnlyImportsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 827 | void insert(Request req, typename Request::OutputType val) { | 263 | 827 | auto *cache = getCache<Request>(); | 264 | 827 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 827 | std::move(val)}); | 266 | 827 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 827 | } |
_ZN5swift9evaluator12RequestCache6insertINS_36CheckInconsistentAccessLevelOnImportEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 827 | void insert(Request req, typename Request::OutputType val) { | 263 | 827 | auto *cache = getCache<Request>(); | 264 | 827 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 827 | std::move(val)}); | 266 | 827 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 827 | } |
_ZN5swift9evaluator12RequestCache6insertINS_41CheckInconsistentWeakLinkedImportsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 253 | void insert(Request req, typename Request::OutputType val) { | 263 | 253 | auto *cache = getCache<Request>(); | 264 | 253 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 253 | std::move(val)}); | 266 | 253 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 253 | } |
_ZN5swift9evaluator12RequestCache6insertINS_31InferredGenericSignatureRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 7.99k | void insert(Request req, typename Request::OutputType val) { | 263 | 7.99k | auto *cache = getCache<Request>(); | 264 | 7.99k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 7.99k | std::move(val)}); | 266 | 7.99k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 7.99k | } |
_ZN5swift9evaluator12RequestCache6insertINS_17HasStorageRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 99.1k | void insert(Request req, typename Request::OutputType val) { | 263 | 99.1k | auto *cache = getCache<Request>(); | 264 | 99.1k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 99.1k | std::move(val)}); | 266 | 99.1k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 99.1k | } |
_ZN5swift9evaluator12RequestCache6insertINS_19ExtendedTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 97.2k | void insert(Request req, typename Request::OutputType val) { | 263 | 97.2k | auto *cache = getCache<Request>(); | 264 | 97.2k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 97.2k | std::move(val)}); | 266 | 97.2k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 97.2k | } |
_ZN5swift9evaluator12RequestCache6insertINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4 | void insert(Request req, typename Request::OutputType val) { | 263 | 4 | auto *cache = getCache<Request>(); | 264 | 4 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4 | std::move(val)}); | 266 | 4 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4 | } |
_ZN5swift9evaluator12RequestCache6insertINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4 | void insert(Request req, typename Request::OutputType val) { | 263 | 4 | auto *cache = getCache<Request>(); | 264 | 4 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4 | std::move(val)}); | 266 | 4 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4 | void insert(Request req, typename Request::OutputType val) { | 263 | 4 | auto *cache = getCache<Request>(); | 264 | 4 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4 | std::move(val)}); | 266 | 4 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4 | } |
_ZN5swift9evaluator12RequestCache6insertINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4 | void insert(Request req, typename Request::OutputType val) { | 263 | 4 | auto *cache = getCache<Request>(); | 264 | 4 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4 | std::move(val)}); | 266 | 4 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4 | } |
_ZN5swift9evaluator12RequestCache6insertINS_24ResolveMacroConformancesEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 24 | void insert(Request req, typename Request::OutputType val) { | 263 | 24 | auto *cache = getCache<Request>(); | 264 | 24 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 24 | std::move(val)}); | 266 | 24 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 24 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_30TypeEraserHasViableInitRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_31SpecializeAttrTargetDeclRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 920 | void insert(Request req, typename Request::OutputType val) { | 263 | 920 | auto *cache = getCache<Request>(); | 264 | 920 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 920 | std::move(val)}); | 266 | 920 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 920 | } |
_ZN5swift9evaluator12RequestCache6insertINS_33DerivativeAttrOriginalDeclRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 804 | void insert(Request req, typename Request::OutputType val) { | 263 | 804 | auto *cache = getCache<Request>(); | 264 | 804 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 804 | std::move(val)}); | 266 | 804 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 804 | } |
_ZN5swift9evaluator12RequestCache6insertINS_29ImplementsAttrProtocolRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 371 | void insert(Request req, typename Request::OutputType val) { | 263 | 371 | auto *cache = getCache<Request>(); | 264 | 371 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 371 | std::move(val)}); | 266 | 371 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 371 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_38InitAccessorReferencedVariablesRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_33SemanticAvailableRangeAttrRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 612 | void insert(Request req, typename Request::OutputType val) { | 263 | 612 | auto *cache = getCache<Request>(); | 264 | 612 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 612 | std::move(val)}); | 266 | 612 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 612 | } |
_ZN5swift9evaluator12RequestCache6insertINS_30SemanticUnavailableAttrRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 69.2k | void insert(Request req, typename Request::OutputType val) { | 263 | 69.2k | auto *cache = getCache<Request>(); | 264 | 69.2k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 69.2k | std::move(val)}); | 266 | 69.2k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 69.2k | } |
_ZN5swift9evaluator12RequestCache6insertINS_27ExpandMemberAttributeMacrosEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 540k | void insert(Request req, typename Request::OutputType val) { | 263 | 540k | auto *cache = getCache<Request>(); | 264 | 540k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 540k | std::move(val)}); | 266 | 540k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 540k | } |
_ZN5swift9evaluator12RequestCache6insertINS_22ExpandPeerMacroRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 209k | void insert(Request req, typename Request::OutputType val) { | 263 | 209k | auto *cache = getCache<Request>(); | 264 | 209k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 209k | std::move(val)}); | 266 | 209k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 209k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_31ExpandMacroExpansionDeclRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_19ResolveMacroRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 222 | void insert(Request req, typename Request::OutputType val) { | 263 | 222 | auto *cache = getCache<Request>(); | 264 | 222 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 222 | std::move(val)}); | 266 | 222 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 222 | } |
_ZN5swift9evaluator12RequestCache6insertINS_27GlobalActorAttributeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 157k | void insert(Request req, typename Request::OutputType val) { | 263 | 157k | auto *cache = getCache<Request>(); | 264 | 157k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 157k | std::move(val)}); | 266 | 157k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 157k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_25ScopedImportLookupRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_30IsABICompatibleOverrideRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 7.21k | void insert(Request req, typename Request::OutputType val) { | 263 | 7.21k | auto *cache = getCache<Request>(); | 264 | 7.21k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 7.21k | std::move(val)}); | 266 | 7.21k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 7.21k | } |
_ZN5swift9evaluator12RequestCache6insertINS_26LocalDiscriminatorsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 15.4k | void insert(Request req, typename Request::OutputType val) { | 263 | 15.4k | auto *cache = getCache<Request>(); | 264 | 15.4k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 15.4k | std::move(val)}); | 266 | 15.4k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 15.4k | } |
_ZN5swift9evaluator12RequestCache6insertINS_23OpaqueResultTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4 | void insert(Request req, typename Request::OutputType val) { | 263 | 4 | auto *cache = getCache<Request>(); | 264 | 4 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4 | std::move(val)}); | 266 | 4 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4 | } |
_ZN5swift9evaluator12RequestCache6insertINS_30DynamicallyReplacedDeclRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 132k | void insert(Request req, typename Request::OutputType val) { | 263 | 132k | auto *cache = getCache<Request>(); | 264 | 132k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 132k | std::move(val)}); | 266 | 132k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 132k | } |
_ZN5swift9evaluator12RequestCache6insertINS_23StoredPropertiesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 7.72k | void insert(Request req, typename Request::OutputType val) { | 263 | 7.72k | auto *cache = getCache<Request>(); | 264 | 7.72k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 7.72k | std::move(val)}); | 266 | 7.72k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 7.72k | } |
_ZN5swift9evaluator12RequestCache6insertINS_29InitAccessorPropertiesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.32k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.32k | auto *cache = getCache<Request>(); | 264 | 1.32k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.32k | std::move(val)}); | 266 | 1.32k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.32k | } |
_ZN5swift9evaluator12RequestCache6insertINS_31MemberwiseInitPropertiesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.32k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.32k | auto *cache = getCache<Request>(); | 264 | 1.32k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.32k | std::move(val)}); | 266 | 1.32k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.32k | } |
_ZN5swift9evaluator12RequestCache6insertINS_40StoredPropertiesAndMissingMembersRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 816 | void insert(Request req, typename Request::OutputType val) { | 263 | 816 | auto *cache = getCache<Request>(); | 264 | 816 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 816 | std::move(val)}); | 266 | 816 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 816 | } |
_ZN5swift9evaluator12RequestCache6insertINS_30PropertyWrapperTypeInfoRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 26 | void insert(Request req, typename Request::OutputType val) { | 263 | 26 | auto *cache = getCache<Request>(); | 264 | 26 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 26 | std::move(val)}); | 266 | 26 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 26 | } |
_ZN5swift9evaluator12RequestCache6insertINS_14IsActorRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 17.5k | void insert(Request req, typename Request::OutputType val) { | 263 | 17.5k | auto *cache = getCache<Request>(); | 264 | 17.5k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 17.5k | std::move(val)}); | 266 | 17.5k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 17.5k | } |
_ZN5swift9evaluator12RequestCache6insertINS_25IsDistributedActorRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 21.7k | void insert(Request req, typename Request::OutputType val) { | 263 | 21.7k | auto *cache = getCache<Request>(); | 264 | 21.7k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 21.7k | std::move(val)}); | 266 | 21.7k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 21.7k | } |
_ZN5swift9evaluator12RequestCache6insertINS_21StructuralTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 28.8k | void insert(Request req, typename Request::OutputType val) { | 263 | 28.8k | auto *cache = getCache<Request>(); | 264 | 28.8k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 28.8k | std::move(val)}); | 266 | 28.8k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 28.8k | } |
_ZN5swift9evaluator12RequestCache6insertINS_18EnumRawTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 8.05k | void insert(Request req, typename Request::OutputType val) { | 263 | 8.05k | auto *cache = getCache<Request>(); | 264 | 8.05k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 8.05k | std::move(val)}); | 266 | 8.05k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 8.05k | } |
_ZN5swift9evaluator12RequestCache6insertINS_24HasMemberwiseInitRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.33k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.33k | auto *cache = getCache<Request>(); | 264 | 1.33k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.33k | std::move(val)}); | 266 | 1.33k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.33k | } |
_ZN5swift9evaluator12RequestCache6insertINS_31SynthesizeMemberwiseInitRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 557 | void insert(Request req, typename Request::OutputType val) { | 263 | 557 | auto *cache = getCache<Request>(); | 264 | 557 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 557 | std::move(val)}); | 266 | 557 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 557 | } |
_ZN5swift9evaluator12RequestCache6insertINS_37ResolveEffectiveMemberwiseInitRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 305 | void insert(Request req, typename Request::OutputType val) { | 263 | 305 | auto *cache = getCache<Request>(); | 264 | 305 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 305 | std::move(val)}); | 266 | 305 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 305 | } |
_ZN5swift9evaluator12RequestCache6insertINS_21HasDefaultInitRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.54k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.54k | auto *cache = getCache<Request>(); | 264 | 1.54k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.54k | std::move(val)}); | 266 | 1.54k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.54k | } |
_ZN5swift9evaluator12RequestCache6insertINS_28SynthesizeDefaultInitRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 315 | void insert(Request req, typename Request::OutputType val) { | 263 | 315 | auto *cache = getCache<Request>(); | 264 | 315 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 315 | std::move(val)}); | 266 | 315 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 315 | } |
_ZN5swift9evaluator12RequestCache6insertINS_26GlobalActorInstanceRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 22 | void insert(Request req, typename Request::OutputType val) { | 263 | 22 | auto *cache = getCache<Request>(); | 264 | 22 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 22 | std::move(val)}); | 266 | 22 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 22 | } |
_ZN5swift9evaluator12RequestCache6insertINS_21IsDefaultActorRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 276 | void insert(Request req, typename Request::OutputType val) { | 263 | 276 | auto *cache = getCache<Request>(); | 264 | 276 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 276 | std::move(val)}); | 266 | 276 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 276 | } |
_ZN5swift9evaluator12RequestCache6insertINS_25ClassAncestryFlagsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 728 | void insert(Request req, typename Request::OutputType val) { | 263 | 728 | auto *cache = getCache<Request>(); | 264 | 728 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 728 | std::move(val)}); | 266 | 728 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 728 | } |
_ZN5swift9evaluator12RequestCache6insertINS_26HasCircularRawValueRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 676 | void insert(Request req, typename Request::OutputType val) { | 263 | 676 | auto *cache = getCache<Request>(); | 264 | 676 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 676 | std::move(val)}); | 266 | 676 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 676 | } |
_ZN5swift9evaluator12RequestCache6insertINS_29PrimaryAssociatedTypesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 230 | void insert(Request req, typename Request::OutputType val) { | 263 | 230 | auto *cache = getCache<Request>(); | 264 | 230 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 230 | std::move(val)}); | 266 | 230 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 230 | } |
_ZN5swift9evaluator12RequestCache6insertINS_29StructuralRequirementsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 437 | void insert(Request req, typename Request::OutputType val) { | 263 | 437 | auto *cache = getCache<Request>(); | 264 | 437 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 437 | std::move(val)}); | 266 | 437 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 437 | } |
_ZN5swift9evaluator12RequestCache6insertINS_28TypeAliasRequirementsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 437 | void insert(Request req, typename Request::OutputType val) { | 263 | 437 | auto *cache = getCache<Request>(); | 264 | 437 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 437 | std::move(val)}); | 266 | 437 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 437 | } |
_ZN5swift9evaluator12RequestCache6insertINS_27ProtocolDependenciesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 8.41k | void insert(Request req, typename Request::OutputType val) { | 263 | 8.41k | auto *cache = getCache<Request>(); | 264 | 8.41k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 8.41k | std::move(val)}); | 266 | 8.41k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 8.41k | } |
_ZN5swift9evaluator12RequestCache6insertINS_36HasCircularInheritedProtocolsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 498 | void insert(Request req, typename Request::OutputType val) { | 263 | 498 | auto *cache = getCache<Request>(); | 264 | 498 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 498 | std::move(val)}); | 266 | 498 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 498 | } |
_ZN5swift9evaluator12RequestCache6insertINS_22HasInitAccessorRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 52.4k | void insert(Request req, typename Request::OutputType val) { | 263 | 52.4k | auto *cache = getCache<Request>(); | 264 | 52.4k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 52.4k | std::move(val)}); | 266 | 52.4k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 52.4k | } |
_ZN5swift9evaluator12RequestCache6insertINS_27DefaultInitializerIsolationEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 269k | void insert(Request req, typename Request::OutputType val) { | 263 | 269k | auto *cache = getCache<Request>(); | 264 | 269k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 269k | std::move(val)}); | 266 | 269k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 269k | } |
_ZN5swift9evaluator12RequestCache6insertINS_31AttachedPropertyWrappersRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 246k | void insert(Request req, typename Request::OutputType val) { | 263 | 246k | auto *cache = getCache<Request>(); | 264 | 246k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 246k | std::move(val)}); | 266 | 246k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 246k | } |
_ZN5swift9evaluator12RequestCache6insertINS_34AttachedPropertyWrapperTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.14k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.14k | auto *cache = getCache<Request>(); | 264 | 1.14k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.14k | std::move(val)}); | 266 | 1.14k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.14k | } |
_ZN5swift9evaluator12RequestCache6insertINS_41PropertyWrapperBackingPropertyTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.12k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.12k | auto *cache = getCache<Request>(); | 264 | 1.12k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.12k | std::move(val)}); | 266 | 1.12k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.12k | } |
_ZN5swift9evaluator12RequestCache6insertINS_40PropertyWrapperAuxiliaryVariablesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 64.8k | void insert(Request req, typename Request::OutputType val) { | 263 | 64.8k | auto *cache = getCache<Request>(); | 264 | 64.8k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 64.8k | std::move(val)}); | 266 | 64.8k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 64.8k | } |
_ZN5swift9evaluator12RequestCache6insertINS_37PropertyWrapperInitializerInfoRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 19.5k | void insert(Request req, typename Request::OutputType val) { | 263 | 19.5k | auto *cache = getCache<Request>(); | 264 | 19.5k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 19.5k | std::move(val)}); | 266 | 19.5k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 19.5k | } |
_ZN5swift9evaluator12RequestCache6insertINS_32PropertyWrapperMutabilityRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 24.2k | void insert(Request req, typename Request::OutputType val) { | 263 | 24.2k | auto *cache = getCache<Request>(); | 264 | 24.2k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 24.2k | std::move(val)}); | 266 | 24.2k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 24.2k | } |
_ZN5swift9evaluator12RequestCache6insertINS_26LazyStoragePropertyRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 5 | void insert(Request req, typename Request::OutputType val) { | 263 | 5 | auto *cache = getCache<Request>(); | 264 | 5 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 5 | std::move(val)}); | 266 | 5 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 5 | } |
_ZN5swift9evaluator12RequestCache6insertINS_24ResultBuilderTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 17.3k | void insert(Request req, typename Request::OutputType val) { | 263 | 17.3k | auto *cache = getCache<Request>(); | 264 | 17.3k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 17.3k | std::move(val)}); | 266 | 17.3k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 17.3k | } |
_ZN5swift9evaluator12RequestCache6insertINS_28AttachedResultBuilderRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 68.5k | void insert(Request req, typename Request::OutputType val) { | 263 | 68.5k | auto *cache = getCache<Request>(); | 264 | 68.5k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 68.5k | std::move(val)}); | 266 | 68.5k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 68.5k | } |
_ZN5swift9evaluator12RequestCache6insertINS_18RenamedDeclRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 433 | void insert(Request req, typename Request::OutputType val) { | 263 | 433 | auto *cache = getCache<Request>(); | 264 | 433 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 433 | std::move(val)}); | 266 | 433 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 433 | } |
_ZN5swift9evaluator12RequestCache6insertINS_23FunctionOperatorRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 64.9k | void insert(Request req, typename Request::OutputType val) { | 263 | 64.9k | auto *cache = getCache<Request>(); | 264 | 64.9k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 64.9k | std::move(val)}); | 266 | 64.9k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 64.9k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_19SimpleDidSetRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_15InitKindRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 34.2k | void insert(Request req, typename Request::OutputType val) { | 263 | 34.2k | auto *cache = getCache<Request>(); | 264 | 34.2k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 34.2k | std::move(val)}); | 266 | 34.2k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 34.2k | } |
_ZN5swift9evaluator12RequestCache6insertINS_19BodyInitKindRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.62k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.62k | auto *cache = getCache<Request>(); | 264 | 1.62k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.62k | std::move(val)}); | 266 | 1.62k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.62k | } |
_ZN5swift9evaluator12RequestCache6insertINS_30OperatorPrecedenceGroupRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4.15k | void insert(Request req, typename Request::OutputType val) { | 263 | 4.15k | auto *cache = getCache<Request>(); | 264 | 4.15k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4.15k | std::move(val)}); | 266 | 4.15k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4.15k | } |
_ZN5swift9evaluator12RequestCache6insertINS_21ActorIsolationRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 116k | void insert(Request req, typename Request::OutputType val) { | 263 | 116k | auto *cache = getCache<Request>(); | 264 | 116k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 116k | std::move(val)}); | 266 | 116k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 116k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_31ExpandMacroExpansionExprRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_22MacroDefinitionRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 12 | void insert(Request req, typename Request::OutputType val) { | 263 | 12 | auto *cache = getCache<Request>(); | 264 | 12 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 12 | std::move(val)}); | 266 | 12 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 12 | } |
_ZN5swift9evaluator12RequestCache6insertINS_26FragileFunctionKindRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 68.0k | void insert(Request req, typename Request::OutputType val) { | 263 | 68.0k | auto *cache = getCache<Request>(); | 264 | 68.0k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 68.0k | std::move(val)}); | 266 | 68.0k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 68.0k | } |
_ZN5swift9evaluator12RequestCache6insertINS_19ParseMembersRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 10.5k | void insert(Request req, typename Request::OutputType val) { | 263 | 10.5k | auto *cache = getCache<Request>(); | 264 | 10.5k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 10.5k | std::move(val)}); | 266 | 10.5k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 10.5k | } |
_ZN5swift9evaluator12RequestCache6insertINS_17ABIMembersRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 8.74k | void insert(Request req, typename Request::OutputType val) { | 263 | 8.74k | auto *cache = getCache<Request>(); | 264 | 8.74k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 8.74k | std::move(val)}); | 266 | 8.74k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 8.74k | } |
_ZN5swift9evaluator12RequestCache6insertINS_17AllMembersRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 6.61k | void insert(Request req, typename Request::OutputType val) { | 263 | 6.61k | auto *cache = getCache<Request>(); | 264 | 6.61k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 6.61k | std::move(val)}); | 266 | 6.61k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 6.61k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_48GetDistributedActorArgumentDecodingMethodRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_43GetDistributedActorInvocationDecoderRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 8 | void insert(Request req, typename Request::OutputType val) { | 263 | 8 | auto *cache = getCache<Request>(); | 264 | 8 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 8 | std::move(val)}); | 266 | 8 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 8 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_26GetDistributedThunkRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_40GetDistributedActorSystemPropertyRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_36GetDistributedActorIDPropertyRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4 | void insert(Request req, typename Request::OutputType val) { | 263 | 4 | auto *cache = getCache<Request>(); | 264 | 4 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4 | std::move(val)}); | 266 | 4 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4 | } |
_ZN5swift9evaluator12RequestCache6insertINS_27SemanticBriefCommentRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.89k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.89k | auto *cache = getCache<Request>(); | 264 | 1.89k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.89k | std::move(val)}); | 266 | 1.89k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.89k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_36PolymorphicEffectRequirementsRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_28PolymorphicEffectKindRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 19.2k | void insert(Request req, typename Request::OutputType val) { | 263 | 19.2k | auto *cache = getCache<Request>(); | 264 | 19.2k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 19.2k | std::move(val)}); | 266 | 19.2k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 19.2k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_27ConformanceHasEffectRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_21ClosureEffectsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 2.89k | void insert(Request req, typename Request::OutputType val) { | 263 | 2.89k | auto *cache = getCache<Request>(); | 264 | 2.89k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 2.89k | std::move(val)}); | 266 | 2.89k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 2.89k | } |
_ZN5swift9evaluator12RequestCache6insertINS_31AbstractGenericSignatureRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 3.58k | void insert(Request req, typename Request::OutputType val) { | 263 | 3.58k | auto *cache = getCache<Request>(); | 264 | 3.58k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 3.58k | std::move(val)}); | 266 | 3.58k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 3.58k | } |
_ZN5swift9evaluator12RequestCache6insertINS_22IsNonUserModuleRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 11 | void insert(Request req, typename Request::OutputType val) { | 263 | 11 | auto *cache = getCache<Request>(); | 264 | 11 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 11 | std::move(val)}); | 266 | 11 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 11 | } |
_ZN5swift9evaluator12RequestCache6insertINS_28ModuleImplicitImportsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 268 | void insert(Request req, typename Request::OutputType val) { | 263 | 268 | auto *cache = getCache<Request>(); | 264 | 268 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 268 | std::move(val)}); | 266 | 268 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 268 | } |
_ZN5swift9evaluator12RequestCache6insertINS_25PrimarySourceFilesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 210 | void insert(Request req, typename Request::OutputType val) { | 263 | 210 | auto *cache = getCache<Request>(); | 264 | 210 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 210 | std::move(val)}); | 266 | 210 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 210 | } |
_ZN5swift9evaluator12RequestCache6insertINS_26MangleLocalTypeDeclRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 9 | void insert(Request req, typename Request::OutputType val) { | 263 | 9 | auto *cache = getCache<Request>(); | 264 | 9 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 9 | std::move(val)}); | 266 | 9 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 9 | } |
_ZN5swift9evaluator12RequestCache6insertINS_21ExpandExtensionMacrosEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 8.88k | void insert(Request req, typename Request::OutputType val) { | 263 | 8.88k | auto *cache = getCache<Request>(); | 264 | 8.88k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 8.88k | std::move(val)}); | 266 | 8.88k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 8.88k | } |
_ZN5swift9evaluator12RequestCache6insertINS_39ImplicitKnownProtocolConformanceRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 3.98k | void insert(Request req, typename Request::OutputType val) { | 263 | 3.98k | auto *cache = getCache<Request>(); | 264 | 3.98k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 3.98k | std::move(val)}); | 266 | 3.98k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 3.98k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_41GetDistributedActorImplicitCodableRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_16SPIGroupsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 135k | void insert(Request req, typename Request::OutputType val) { | 263 | 135k | auto *cache = getCache<Request>(); | 264 | 135k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 135k | std::move(val)}); | 266 | 135k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 135k | } |
_ZN5swift9evaluator12RequestCache6insertINS_25ModuleLibraryLevelRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 224 | void insert(Request req, typename Request::OutputType val) { | 263 | 224 | auto *cache = getCache<Request>(); | 264 | 224 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 224 | std::move(val)}); | 266 | 224 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 224 | } |
_ZN5swift9evaluator12RequestCache6insertINS_25ParseTopLevelDeclsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 843 | void insert(Request req, typename Request::OutputType val) { | 263 | 843 | auto *cache = getCache<Request>(); | 264 | 843 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 843 | std::move(val)}); | 266 | 843 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 843 | } |
_ZN5swift9evaluator12RequestCache6insertINS_25ExportedSourceFileRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 569 | void insert(Request req, typename Request::OutputType val) { | 263 | 569 | auto *cache = getCache<Request>(); | 264 | 569 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 569 | std::move(val)}); | 266 | 569 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 569 | } |
_ZN5swift9evaluator12RequestCache6insertINS_22GetSourceFileAsyncNodeEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 100 | void insert(Request req, typename Request::OutputType val) { | 263 | 100 | auto *cache = getCache<Request>(); | 264 | 100 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 100 | std::move(val)}); | 266 | 100 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 100 | } |
_ZN5swift9evaluator12RequestCache6insertINS_35ExpandSynthesizedMemberMacroRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 8.49k | void insert(Request req, typename Request::OutputType val) { | 263 | 8.49k | auto *cache = getCache<Request>(); | 264 | 8.49k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 8.49k | std::move(val)}); | 266 | 8.49k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 8.49k | } |
_ZN5swift9evaluator12RequestCache6insertINS_40PotentialMacroExpansionsInContextRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 75.3k | void insert(Request req, typename Request::OutputType val) { | 263 | 75.3k | auto *cache = getCache<Request>(); | 264 | 75.3k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 75.3k | std::move(val)}); | 266 | 75.3k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 75.3k | } |
_ZN5swift9evaluator12RequestCache6insertINS_30IsCallAsFunctionNominalRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 74 | void insert(Request req, typename Request::OutputType val) { | 263 | 74 | auto *cache = getCache<Request>(); | 264 | 74 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 74 | std::move(val)}); | 266 | 74 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 74 | } |
_ZN5swift9evaluator12RequestCache6insertINS_38HasDynamicMemberLookupAttributeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4.82k | void insert(Request req, typename Request::OutputType val) { | 263 | 4.82k | auto *cache = getCache<Request>(); | 264 | 4.82k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4.82k | std::move(val)}); | 266 | 4.82k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4.82k | } |
_ZN5swift9evaluator12RequestCache6insertINS_34HasDynamicCallableAttributeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 149 | void insert(Request req, typename Request::OutputType val) { | 263 | 149 | auto *cache = getCache<Request>(); | 264 | 149 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 149 | std::move(val)}); | 266 | 149 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 149 | } |
_ZN5swift9evaluator12RequestCache6insertINS_26LookupInfixOperatorRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.79k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.79k | auto *cache = getCache<Request>(); | 264 | 1.79k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.79k | std::move(val)}); | 266 | 1.79k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.79k | } |
_ZN5swift9evaluator12RequestCache6insertINS_27LookupPrefixOperatorRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 8 | void insert(Request req, typename Request::OutputType val) { | 263 | 8 | auto *cache = getCache<Request>(); | 264 | 8 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 8 | std::move(val)}); | 266 | 8 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 8 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_28LookupPostfixOperatorRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_28LookupPrecedenceGroupRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 517 | void insert(Request req, typename Request::OutputType val) { | 263 | 517 | auto *cache = getCache<Request>(); | 264 | 517 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 517 | std::move(val)}); | 266 | 517 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 517 | } |
_ZN5swift9evaluator12RequestCache6insertINS_30ConditionalRequirementsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 18.0k | void insert(Request req, typename Request::OutputType val) { | 263 | 18.0k | auto *cache = getCache<Request>(); | 264 | 18.0k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 18.0k | std::move(val)}); | 266 | 18.0k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 18.0k | } |
_ZN5swift9evaluator12RequestCache6insertINS_37LookupAllConformancesInContextRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 12.4k | void insert(Request req, typename Request::OutputType val) { | 263 | 12.4k | auto *cache = getCache<Request>(); | 264 | 12.4k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 12.4k | std::move(val)}); | 266 | 12.4k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 12.4k | } |
_ZN5swift9evaluator12RequestCache6insertINS_17RawCommentRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 7.76k | void insert(Request req, typename Request::OutputType val) { | 263 | 7.76k | auto *cache = getCache<Request>(); | 264 | 7.76k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 7.76k | std::move(val)}); | 266 | 7.76k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 7.76k | } |
_ZN5swift9evaluator12RequestCache6insertINS_24IsSingleValueStmtRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 12.7k | void insert(Request req, typename Request::OutputType val) { | 263 | 12.7k | auto *cache = getCache<Request>(); | 264 | 12.7k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 12.7k | std::move(val)}); | 266 | 12.7k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 12.7k | } |
_ZN5swift9evaluator12RequestCache6insertINS_18BreakTargetRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 171 | void insert(Request req, typename Request::OutputType val) { | 263 | 171 | auto *cache = getCache<Request>(); | 264 | 171 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 171 | std::move(val)}); | 266 | 171 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 171 | } |
_ZN5swift9evaluator12RequestCache6insertINS_21ContinueTargetRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 82 | void insert(Request req, typename Request::OutputType val) { | 263 | 82 | auto *cache = getCache<Request>(); | 264 | 82 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 82 | std::move(val)}); | 266 | 82 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 82 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_20IsNoncopyableRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_18RequirementRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 8.11k | void insert(Request req, typename Request::OutputType val) { | 263 | 8.11k | auto *cache = getCache<Request>(); | 264 | 8.11k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 8.11k | std::move(val)}); | 266 | 8.11k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 8.11k | } |
_ZN5swift9evaluator12RequestCache6insertINS_40ExpandChildTypeRefinementContextsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 26.0k | void insert(Request req, typename Request::OutputType val) { | 263 | 26.0k | auto *cache = getCache<Request>(); | 264 | 26.0k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 26.0k | std::move(val)}); | 266 | 26.0k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 26.0k | } |
|
269 | | |
270 | | template <typename Request> |
271 | 6.34k | void erase(Request req) { |
272 | 6.34k | auto *cache = getCache<Request>(); |
273 | 6.34k | cache->erase(RequestKey<Request>(std::move(req))); |
274 | 6.34k | } Unexecuted instantiation: _ZN5swift9evaluator12RequestCache5eraseINS_26LocalDiscriminatorsRequestEEEvT_ _ZN5swift9evaluator12RequestCache5eraseINS_19BodyInitKindRequestEEEvT_ Line | Count | Source | 271 | 6.34k | void erase(Request req) { | 272 | 6.34k | auto *cache = getCache<Request>(); | 273 | 6.34k | cache->erase(RequestKey<Request>(std::move(req))); | 274 | 6.34k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache5eraseINS_25ParseTopLevelDeclsRequestEEEvT_ |
275 | | |
276 | 0 | void clear() { |
277 | 0 | #define SWIFT_TYPEID_ZONE(Name, Id) Name##ZoneCache.clear(); |
278 | 0 | #include "swift/Basic/TypeIDZones.def" |
279 | 0 | #undef SWIFT_TYPEID_ZONE |
280 | 0 | } |
281 | | }; |
282 | | |
283 | | /// Type-erased wrapper for caching dependencies from a single type of request. |
284 | | class PerRequestReferences { |
285 | | void *Storage; |
286 | | std::function<void(void *)> Deleter; |
287 | | |
288 | | PerRequestReferences(void *storage, std::function<void(void *)> deleter) |
289 | 5.99k | : Storage(storage), Deleter(deleter) {} |
290 | | |
291 | | public: |
292 | 35.7k | PerRequestReferences() : Storage(nullptr), Deleter([](void *) {}) {} |
293 | | PerRequestReferences(PerRequestReferences &&other) |
294 | 5.99k | : Storage(other.Storage), Deleter(std::move(other.Deleter)) { |
295 | 5.99k | other.Storage = nullptr; |
296 | 5.99k | } |
297 | | |
298 | 5.99k | PerRequestReferences &operator=(PerRequestReferences &&other) { |
299 | 5.99k | if (&other != this) { |
300 | 5.99k | this->~PerRequestReferences(); |
301 | 5.99k | new (this) PerRequestReferences(std::move(other)); |
302 | 5.99k | } |
303 | 5.99k | return *this; |
304 | 5.99k | } |
305 | | |
306 | | PerRequestReferences(const PerRequestReferences &) = delete; |
307 | | PerRequestReferences &operator=(const PerRequestReferences &) = delete; |
308 | | |
309 | | template <typename Request> |
310 | 5.99k | static PerRequestReferences makeEmpty() { |
311 | 5.99k | using Map = |
312 | 5.99k | llvm::DenseMap<RequestKey<Request>, |
313 | 5.99k | std::vector<DependencyCollector::Reference>>; |
314 | 5.99k | return PerRequestReferences(new Map(), |
315 | 5.99k | [](void *ptr) { delete static_cast<Map *>(ptr); });_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20USRGenerationRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24IDEInspectionFileRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ConstantValueInfoRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22SymbolSourceMapRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_12IRGenRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 49 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18ASTLoweringRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 79 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TangentStoredPropertyRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 15 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26ResolveProtocolNameRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ProvideDefaultImplForRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29CollectOverriddenDeclsRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23IsDeclApplicableRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24TypeRelationCheckRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28PreCheckResultBuilderRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32CompareDeclSpecializationRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 39 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29EnumElementExprPatternRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25IsDeclRefinementOfRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 25 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_35HasUserDefinedDesignatedInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 38 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_44AreAllStoredPropertiesDefaultInitableRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ClosureHasExplicitResultRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28IsCCompatibleFuncDeclRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_35DistributedModuleIsAvailableRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31CheckDistributedFunctionRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30ValidatePrecedenceGroupRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 30 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29SynthesizeMainFunctionRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 29 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34TypeCheckObjCImplementationRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25CheckRedeclarationRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ApplyAccessNoteRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18DefaultTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 48 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30ExternalMacroDefinitionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25CompilerPluginLoadRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18PatternTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 39 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20InheritedTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 47 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24CustomAttrNominalRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21CustomAttrTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25PreCheckReturnStmtRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32PropertyWrapperLValuenessRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20ExpandAccessorMacrosEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26TypeCheckSourceFileRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_49CheckInconsistentImplementationOnlyImportsRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_38CheckInconsistentSPIOnlyImportsRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36CheckInconsistentAccessLevelOnImportEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_41CheckInconsistentWeakLinkedImportsRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31InferredGenericSignatureRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 45 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26CustomRefCountingOperationEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37ObjCInterfaceAndImplementationRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30IDEInspectionSecondPassRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26LocalDiscriminatorsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ResolveMacroConformancesEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30TypeEraserHasViableInitRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ResolveTypeEraserTypeRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ResolveRawLayoutLikeTypeRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31SpecializeAttrTargetDeclRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36SerializeAttrGenericSignatureRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_39DifferentiableAttributeTypeCheckRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 46 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_33DerivativeAttrOriginalDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 18 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29ImplementsAttrProtocolRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 18 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_38InitAccessorReferencedVariablesRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_33SemanticAvailableRangeAttrRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30SemanticUnavailableAttrRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 52 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ExpandMemberAttributeMacrosEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ExpandPeerMacroRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ExpandMacroExpansionDeclRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ResolveMacroRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27GlobalActorAttributeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17ThrownTypeRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28IsAccessorTransparentRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 29 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23GenericParamListRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23GenericSignatureRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ScopedImportLookupRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ExtendedNominalRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 24 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31DefaultAndMaxAccessLevelRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ExtendedTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 23 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26PatternBindingEntryRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 50 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30RequiresOpaqueAccessorsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 51 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36RequiresOpaqueModifyCoroutineRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 32 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25SynthesizeAccessorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 24 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30IsABICompatibleOverrideRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23IsGetterMutatingRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 42 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23IsSetterMutatingRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 34 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26OpaqueReadOwnershipRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 42 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22OverriddenDeclsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23OpaqueResultTypeRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_13IsObjCRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 84 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_14IsFinalRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 62 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18IsEscapableRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 49 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_16IsDynamicRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 60 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30DynamicallyReplacedDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 62 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36IsImplicitlyUnwrappedOptionalRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 56 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20InterfaceTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18AccessLevelRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31HasNoncopyableAnnotationRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23StoredPropertiesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 61 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29InitAccessorPropertiesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 32 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31MemberwiseInitPropertiesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 24 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40StoredPropertiesAndMissingMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 24 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30PropertyWrapperTypeInfoRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_14IsActorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 58 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25IsDistributedActorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 59 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21UnderlyingTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21StructuralTypeRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28DefaultDefinitionTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18EnumRawTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24HasMemberwiseInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 35 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31SynthesizeMemberwiseInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 23 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37ResolveEffectiveMemberwiseInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 26 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21HasDefaultInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 38 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28SynthesizeDefaultInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26GlobalActorInstanceRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20GetDestructorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 44 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21IsDefaultActorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_39HasMissingDesignatedInitializersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37InheritsSuperclassInitializersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ClassAncestryFlagsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 18 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26HasCircularRawValueRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25InheritedProtocolsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 70 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ProtocolRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 34 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21SuperclassTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 46 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ProtocolRequiresClassRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 40 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32ExistentialConformsToSelfRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 15 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_42HasSelfOrAssociatedTypeRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29PrimaryAssociatedTypesRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29StructuralRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 18 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TypeAliasRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 11 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ProtocolDependenciesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 70 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27RequirementSignatureRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 83 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36HasCircularInheritedProtocolsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17HasStorageRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22StorageImplInfoRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24SetterAccessLevelRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 44 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22HasInitAccessorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 53 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27DefaultInitializerIsolationEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 62 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20NamingPatternRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 50 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ParamSpecifierRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 61 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31AttachedPropertyWrappersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34AttachedPropertyWrapperTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_41PropertyWrapperBackingPropertyTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40PropertyWrapperAuxiliaryVariablesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 40 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37PropertyWrapperInitializerInfoRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 25 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32PropertyWrapperMutabilityRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 53 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26LazyStoragePropertyRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_33DefaultArgumentInitContextRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26DefaultArgumentExprRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26DefaultArgumentTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 40 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ResultBuilderTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 55 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28AttachedResultBuilderRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 53 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17ResultTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 64 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18RenamedDeclRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32ParseAbstractFunctionBodyRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 58 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TypeCheckFunctionBodyRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 59 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28IsFunctionBodySkippedRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26NeedsNewVTableEntryRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 9 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23FunctionOperatorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 34 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_15IsStaticRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 62 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19SimpleDidSetRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21SelfAccessKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 57 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20EnumRawValuesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_15InitKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 56 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19BodyInitKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 101 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30OperatorPrecedenceGroupRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 38 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ActorIsolationRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ExpandMacroExpansionExprRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22MacroDefinitionRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26FragileFunctionKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ParseMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 40 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17ABIMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 36 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17AllMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 27 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_48GetDistributedActorArgumentDecodingMethodRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_43GetDistributedActorInvocationDecoderRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26GetDistributedThunkRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40GetDistributedActorSystemPropertyRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36GetDistributedActorIDPropertyRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27SemanticBriefCommentRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36PolymorphicEffectRequirementsRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28PolymorphicEffectKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 50 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ConformanceHasEffectRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31CallerSideDefaultArgExprRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 38 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ClosureEffectsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 39 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31AbstractGenericSignatureRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 51 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22IsNonUserModuleRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ModuleImplicitImportsRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25PrimarySourceFilesRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26MangleLocalTypeDeclRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ExpandExtensionMacrosEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 68 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_39ImplicitKnownProtocolConformanceRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 36 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_41GetDistributedActorImplicitCodableRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ParseSourceFileRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29HasImportsMatchingFlagRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_16SPIGroupsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ModuleLibraryLevelRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ParseTopLevelDeclsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ExportedSourceFileRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22GetSourceFileAsyncNodeEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 45 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_35ExpandSynthesizedMemberMacroRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 39 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40PotentialMacroExpansionsInContextRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 27 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21SuperclassDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 54 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30IsCallAsFunctionNominalRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_38HasDynamicMemberLookupAttributeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 42 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34HasDynamicCallableAttributeRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26LookupInfixOperatorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 46 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27LookupPrefixOperatorRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28LookupPostfixOperatorRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28LookupPrecedenceGroupRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 30 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23ExprPatternMatchRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30ConditionalRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 62 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18TypeWitnessRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 21 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28AssociatedConformanceRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 32 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ValueWitnessRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 48 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37LookupAllConformancesInContextRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 43 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17RawCommentRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24IsSingleValueStmtRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18BreakTargetRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ContinueTargetRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20IsNoncopyableRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18RequirementRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 33 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40ExpandChildTypeRefinementContextsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 44 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
|
316 | 5.99k | } Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18OptimizedIRRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20USRGenerationRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24IDEInspectionFileRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ConstantValueInfoRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26CustomRefCountingOperationEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22SymbolSourceMapRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_12IRGenRequestEEES1_v Line | Count | Source | 310 | 49 | static PerRequestReferences makeEmpty() { | 311 | 49 | using Map = | 312 | 49 | llvm::DenseMap<RequestKey<Request>, | 313 | 49 | std::vector<DependencyCollector::Reference>>; | 314 | 49 | return PerRequestReferences(new Map(), | 315 | 49 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 49 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17LoweredSILRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20PublicSymbolsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18GenerateTBDRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_13APIGenRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18ASTLoweringRequestEEES1_v Line | Count | Source | 310 | 79 | static PerRequestReferences makeEmpty() { | 311 | 79 | using Map = | 312 | 79 | llvm::DenseMap<RequestKey<Request>, | 313 | 79 | std::vector<DependencyCollector::Reference>>; | 314 | 79 | return PerRequestReferences(new Map(), | 315 | 79 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 79 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ParseSILModuleRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TangentStoredPropertyRequestEEES1_v Line | Count | Source | 310 | 15 | static PerRequestReferences makeEmpty() { | 311 | 15 | using Map = | 312 | 15 | llvm::DenseMap<RequestKey<Request>, | 313 | 15 | std::vector<DependencyCollector::Reference>>; | 314 | 15 | return PerRequestReferences(new Map(), | 315 | 15 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 15 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ExecuteSILPipelineRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26ResolveProtocolNameRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ProvideDefaultImplForRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29CollectOverriddenDeclsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23IsDeclApplicableRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24TypeRelationCheckRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37RootTypeOfKeypathDynamicMemberRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28PreCheckResultBuilderRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32CompareDeclSpecializationRequestEEES1_v Line | Count | Source | 310 | 39 | static PerRequestReferences makeEmpty() { | 311 | 39 | using Map = | 312 | 39 | llvm::DenseMap<RequestKey<Request>, | 313 | 39 | std::vector<DependencyCollector::Reference>>; | 314 | 39 | return PerRequestReferences(new Map(), | 315 | 39 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 39 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29EnumElementExprPatternRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25IsDeclRefinementOfRequestEEES1_v Line | Count | Source | 310 | 25 | static PerRequestReferences makeEmpty() { | 311 | 25 | using Map = | 312 | 25 | llvm::DenseMap<RequestKey<Request>, | 313 | 25 | std::vector<DependencyCollector::Reference>>; | 314 | 25 | return PerRequestReferences(new Map(), | 315 | 25 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 25 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_35HasUserDefinedDesignatedInitRequestEEES1_v Line | Count | Source | 310 | 38 | static PerRequestReferences makeEmpty() { | 311 | 38 | using Map = | 312 | 38 | llvm::DenseMap<RequestKey<Request>, | 313 | 38 | std::vector<DependencyCollector::Reference>>; | 314 | 38 | return PerRequestReferences(new Map(), | 315 | 38 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 38 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_44AreAllStoredPropertiesDefaultInitableRequestEEES1_v Line | Count | Source | 310 | 5 | static PerRequestReferences makeEmpty() { | 311 | 5 | using Map = | 312 | 5 | llvm::DenseMap<RequestKey<Request>, | 313 | 5 | std::vector<DependencyCollector::Reference>>; | 314 | 5 | return PerRequestReferences(new Map(), | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 5 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ClosureHasExplicitResultRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28IsCCompatibleFuncDeclRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_35DistributedModuleIsAvailableRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31CheckDistributedFunctionRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30ValidatePrecedenceGroupRequestEEES1_v Line | Count | Source | 310 | 30 | static PerRequestReferences makeEmpty() { | 311 | 30 | using Map = | 312 | 30 | llvm::DenseMap<RequestKey<Request>, | 313 | 30 | std::vector<DependencyCollector::Reference>>; | 314 | 30 | return PerRequestReferences(new Map(), | 315 | 30 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 30 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29SynthesizeMainFunctionRequestEEES1_v Line | Count | Source | 310 | 29 | static PerRequestReferences makeEmpty() { | 311 | 29 | using Map = | 312 | 29 | llvm::DenseMap<RequestKey<Request>, | 313 | 29 | std::vector<DependencyCollector::Reference>>; | 314 | 29 | return PerRequestReferences(new Map(), | 315 | 29 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 29 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34TypeCheckObjCImplementationRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25CheckRedeclarationRequestEEES1_v Line | Count | Source | 310 | 63 | static PerRequestReferences makeEmpty() { | 311 | 63 | using Map = | 312 | 63 | llvm::DenseMap<RequestKey<Request>, | 313 | 63 | std::vector<DependencyCollector::Reference>>; | 314 | 63 | return PerRequestReferences(new Map(), | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 63 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ApplyAccessNoteRequestEEES1_v Line | Count | Source | 310 | 63 | static PerRequestReferences makeEmpty() { | 311 | 63 | using Map = | 312 | 63 | llvm::DenseMap<RequestKey<Request>, | 313 | 63 | std::vector<DependencyCollector::Reference>>; | 314 | 63 | return PerRequestReferences(new Map(), | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 63 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27DirectOperatorLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34DirectPrecedenceGroupLookupRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18DefaultTypeRequestEEES1_v Line | Count | Source | 310 | 48 | static PerRequestReferences makeEmpty() { | 311 | 48 | using Map = | 312 | 48 | llvm::DenseMap<RequestKey<Request>, | 313 | 48 | std::vector<DependencyCollector::Reference>>; | 314 | 48 | return PerRequestReferences(new Map(), | 315 | 48 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 48 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30ExternalMacroDefinitionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25CompilerPluginLoadRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18PatternTypeRequestEEES1_v Line | Count | Source | 310 | 39 | static PerRequestReferences makeEmpty() { | 311 | 39 | using Map = | 312 | 39 | llvm::DenseMap<RequestKey<Request>, | 313 | 39 | std::vector<DependencyCollector::Reference>>; | 314 | 39 | return PerRequestReferences(new Map(), | 315 | 39 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 39 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20InheritedTypeRequestEEES1_v Line | Count | Source | 310 | 47 | static PerRequestReferences makeEmpty() { | 311 | 47 | using Map = | 312 | 47 | llvm::DenseMap<RequestKey<Request>, | 313 | 47 | std::vector<DependencyCollector::Reference>>; | 314 | 47 | return PerRequestReferences(new Map(), | 315 | 47 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 47 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24CustomAttrNominalRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21CustomAttrTypeRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25PreCheckReturnStmtRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27PreCheckFunctionBodyRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32PropertyWrapperLValuenessRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20ExpandAccessorMacrosEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18ResolveTypeRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26TypeCheckSourceFileRequestEEES1_v Line | Count | Source | 310 | 85 | static PerRequestReferences makeEmpty() { | 311 | 85 | using Map = | 312 | 85 | llvm::DenseMap<RequestKey<Request>, | 313 | 85 | std::vector<DependencyCollector::Reference>>; | 314 | 85 | return PerRequestReferences(new Map(), | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 85 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_49CheckInconsistentImplementationOnlyImportsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_38CheckInconsistentSPIOnlyImportsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36CheckInconsistentAccessLevelOnImportEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_41CheckInconsistentWeakLinkedImportsRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31InferredGenericSignatureRequestEEES1_v Line | Count | Source | 310 | 45 | static PerRequestReferences makeEmpty() { | 311 | 45 | using Map = | 312 | 45 | llvm::DenseMap<RequestKey<Request>, | 313 | 45 | std::vector<DependencyCollector::Reference>>; | 314 | 45 | return PerRequestReferences(new Map(), | 315 | 45 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 45 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TypeCheckASTNodeAtLocRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37ObjCInterfaceAndImplementationRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23ClangRecordMemberLookupEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26ClangCategoryLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18CxxRecordSemanticsEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18IsSafeUseOfCxxDeclEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20CxxRecordAsSwiftTypeEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30IDEInspectionSecondPassRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26LocalDiscriminatorsRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31TypeDeclsFromWhereClauseRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22HasIsolatedSelfRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ClangDirectLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ResolveMacroConformancesEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30TypeEraserHasViableInitRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ResolveTypeEraserTypeRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ResolveRawLayoutLikeTypeRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31SpecializeAttrTargetDeclRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36SerializeAttrGenericSignatureRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_39DifferentiableAttributeTypeCheckRequestEEES1_v Line | Count | Source | 310 | 46 | static PerRequestReferences makeEmpty() { | 311 | 46 | using Map = | 312 | 46 | llvm::DenseMap<RequestKey<Request>, | 313 | 46 | std::vector<DependencyCollector::Reference>>; | 314 | 46 | return PerRequestReferences(new Map(), | 315 | 46 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 46 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_33DerivativeAttrOriginalDeclRequestEEES1_v Line | Count | Source | 310 | 18 | static PerRequestReferences makeEmpty() { | 311 | 18 | using Map = | 312 | 18 | llvm::DenseMap<RequestKey<Request>, | 313 | 18 | std::vector<DependencyCollector::Reference>>; | 314 | 18 | return PerRequestReferences(new Map(), | 315 | 18 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 18 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29ImplementsAttrProtocolRequestEEES1_v Line | Count | Source | 310 | 18 | static PerRequestReferences makeEmpty() { | 311 | 18 | using Map = | 312 | 18 | llvm::DenseMap<RequestKey<Request>, | 313 | 18 | std::vector<DependencyCollector::Reference>>; | 314 | 18 | return PerRequestReferences(new Map(), | 315 | 18 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 18 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_38InitAccessorReferencedVariablesRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_33SemanticAvailableRangeAttrRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30SemanticUnavailableAttrRequestEEES1_v Line | Count | Source | 310 | 52 | static PerRequestReferences makeEmpty() { | 311 | 52 | using Map = | 312 | 52 | llvm::DenseMap<RequestKey<Request>, | 313 | 52 | std::vector<DependencyCollector::Reference>>; | 314 | 52 | return PerRequestReferences(new Map(), | 315 | 52 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 52 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ExpandMemberAttributeMacrosEEES1_v Line | Count | Source | 310 | 85 | static PerRequestReferences makeEmpty() { | 311 | 85 | using Map = | 312 | 85 | llvm::DenseMap<RequestKey<Request>, | 313 | 85 | std::vector<DependencyCollector::Reference>>; | 314 | 85 | return PerRequestReferences(new Map(), | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 85 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ExpandPeerMacroRequestEEES1_v Line | Count | Source | 310 | 63 | static PerRequestReferences makeEmpty() { | 311 | 63 | using Map = | 312 | 63 | llvm::DenseMap<RequestKey<Request>, | 313 | 63 | std::vector<DependencyCollector::Reference>>; | 314 | 63 | return PerRequestReferences(new Map(), | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 63 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ExpandMacroExpansionDeclRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ResolveMacroRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27GlobalActorAttributeRequestEEES1_v Line | Count | Source | 310 | 63 | static PerRequestReferences makeEmpty() { | 311 | 63 | using Map = | 312 | 63 | llvm::DenseMap<RequestKey<Request>, | 313 | 63 | std::vector<DependencyCollector::Reference>>; | 314 | 63 | return PerRequestReferences(new Map(), | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 63 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17ThrownTypeRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28IsAccessorTransparentRequestEEES1_v Line | Count | Source | 310 | 29 | static PerRequestReferences makeEmpty() { | 311 | 29 | using Map = | 312 | 29 | llvm::DenseMap<RequestKey<Request>, | 313 | 29 | std::vector<DependencyCollector::Reference>>; | 314 | 29 | return PerRequestReferences(new Map(), | 315 | 29 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 29 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23GenericParamListRequestEEES1_v Line | Count | Source | 310 | 85 | static PerRequestReferences makeEmpty() { | 311 | 85 | using Map = | 312 | 85 | llvm::DenseMap<RequestKey<Request>, | 313 | 85 | std::vector<DependencyCollector::Reference>>; | 314 | 85 | return PerRequestReferences(new Map(), | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 85 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23GenericSignatureRequestEEES1_v Line | Count | Source | 310 | 85 | static PerRequestReferences makeEmpty() { | 311 | 85 | using Map = | 312 | 85 | llvm::DenseMap<RequestKey<Request>, | 313 | 85 | std::vector<DependencyCollector::Reference>>; | 314 | 85 | return PerRequestReferences(new Map(), | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 85 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ScopedImportLookupRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ExtendedNominalRequestEEES1_v Line | Count | Source | 310 | 24 | static PerRequestReferences makeEmpty() { | 311 | 24 | using Map = | 312 | 24 | llvm::DenseMap<RequestKey<Request>, | 313 | 24 | std::vector<DependencyCollector::Reference>>; | 314 | 24 | return PerRequestReferences(new Map(), | 315 | 24 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 24 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31DefaultAndMaxAccessLevelRequestEEES1_v Line | Count | Source | 310 | 14 | static PerRequestReferences makeEmpty() { | 311 | 14 | using Map = | 312 | 14 | llvm::DenseMap<RequestKey<Request>, | 313 | 14 | std::vector<DependencyCollector::Reference>>; | 314 | 14 | return PerRequestReferences(new Map(), | 315 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 14 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ExtendedTypeRequestEEES1_v Line | Count | Source | 310 | 23 | static PerRequestReferences makeEmpty() { | 311 | 23 | using Map = | 312 | 23 | llvm::DenseMap<RequestKey<Request>, | 313 | 23 | std::vector<DependencyCollector::Reference>>; | 314 | 23 | return PerRequestReferences(new Map(), | 315 | 23 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 23 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26PatternBindingEntryRequestEEES1_v Line | Count | Source | 310 | 50 | static PerRequestReferences makeEmpty() { | 311 | 50 | using Map = | 312 | 50 | llvm::DenseMap<RequestKey<Request>, | 313 | 50 | std::vector<DependencyCollector::Reference>>; | 314 | 50 | return PerRequestReferences(new Map(), | 315 | 50 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 50 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30RequiresOpaqueAccessorsRequestEEES1_v Line | Count | Source | 310 | 51 | static PerRequestReferences makeEmpty() { | 311 | 51 | using Map = | 312 | 51 | llvm::DenseMap<RequestKey<Request>, | 313 | 51 | std::vector<DependencyCollector::Reference>>; | 314 | 51 | return PerRequestReferences(new Map(), | 315 | 51 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 51 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36RequiresOpaqueModifyCoroutineRequestEEES1_v Line | Count | Source | 310 | 32 | static PerRequestReferences makeEmpty() { | 311 | 32 | using Map = | 312 | 32 | llvm::DenseMap<RequestKey<Request>, | 313 | 32 | std::vector<DependencyCollector::Reference>>; | 314 | 32 | return PerRequestReferences(new Map(), | 315 | 32 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 32 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25SynthesizeAccessorRequestEEES1_v Line | Count | Source | 310 | 24 | static PerRequestReferences makeEmpty() { | 311 | 24 | using Map = | 312 | 24 | llvm::DenseMap<RequestKey<Request>, | 313 | 24 | std::vector<DependencyCollector::Reference>>; | 314 | 24 | return PerRequestReferences(new Map(), | 315 | 24 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 24 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30IsABICompatibleOverrideRequestEEES1_v Line | Count | Source | 310 | 8 | static PerRequestReferences makeEmpty() { | 311 | 8 | using Map = | 312 | 8 | llvm::DenseMap<RequestKey<Request>, | 313 | 8 | std::vector<DependencyCollector::Reference>>; | 314 | 8 | return PerRequestReferences(new Map(), | 315 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 8 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23IsGetterMutatingRequestEEES1_v Line | Count | Source | 310 | 42 | static PerRequestReferences makeEmpty() { | 311 | 42 | using Map = | 312 | 42 | llvm::DenseMap<RequestKey<Request>, | 313 | 42 | std::vector<DependencyCollector::Reference>>; | 314 | 42 | return PerRequestReferences(new Map(), | 315 | 42 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 42 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23IsSetterMutatingRequestEEES1_v Line | Count | Source | 310 | 34 | static PerRequestReferences makeEmpty() { | 311 | 34 | using Map = | 312 | 34 | llvm::DenseMap<RequestKey<Request>, | 313 | 34 | std::vector<DependencyCollector::Reference>>; | 314 | 34 | return PerRequestReferences(new Map(), | 315 | 34 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 34 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26OpaqueReadOwnershipRequestEEES1_v Line | Count | Source | 310 | 42 | static PerRequestReferences makeEmpty() { | 311 | 42 | using Map = | 312 | 42 | llvm::DenseMap<RequestKey<Request>, | 313 | 42 | std::vector<DependencyCollector::Reference>>; | 314 | 42 | return PerRequestReferences(new Map(), | 315 | 42 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 42 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22OverriddenDeclsRequestEEES1_v Line | Count | Source | 310 | 85 | static PerRequestReferences makeEmpty() { | 311 | 85 | using Map = | 312 | 85 | llvm::DenseMap<RequestKey<Request>, | 313 | 85 | std::vector<DependencyCollector::Reference>>; | 314 | 85 | return PerRequestReferences(new Map(), | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 85 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23OpaqueResultTypeRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_13IsObjCRequestEEES1_v Line | Count | Source | 310 | 84 | static PerRequestReferences makeEmpty() { | 311 | 84 | using Map = | 312 | 84 | llvm::DenseMap<RequestKey<Request>, | 313 | 84 | std::vector<DependencyCollector::Reference>>; | 314 | 84 | return PerRequestReferences(new Map(), | 315 | 84 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 84 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_14IsFinalRequestEEES1_v Line | Count | Source | 310 | 62 | static PerRequestReferences makeEmpty() { | 311 | 62 | using Map = | 312 | 62 | llvm::DenseMap<RequestKey<Request>, | 313 | 62 | std::vector<DependencyCollector::Reference>>; | 314 | 62 | return PerRequestReferences(new Map(), | 315 | 62 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 62 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18IsEscapableRequestEEES1_v Line | Count | Source | 310 | 49 | static PerRequestReferences makeEmpty() { | 311 | 49 | using Map = | 312 | 49 | llvm::DenseMap<RequestKey<Request>, | 313 | 49 | std::vector<DependencyCollector::Reference>>; | 314 | 49 | return PerRequestReferences(new Map(), | 315 | 49 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 49 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_16IsDynamicRequestEEES1_v Line | Count | Source | 310 | 60 | static PerRequestReferences makeEmpty() { | 311 | 60 | using Map = | 312 | 60 | llvm::DenseMap<RequestKey<Request>, | 313 | 60 | std::vector<DependencyCollector::Reference>>; | 314 | 60 | return PerRequestReferences(new Map(), | 315 | 60 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 60 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30DynamicallyReplacedDeclRequestEEES1_v Line | Count | Source | 310 | 62 | static PerRequestReferences makeEmpty() { | 311 | 62 | using Map = | 312 | 62 | llvm::DenseMap<RequestKey<Request>, | 313 | 62 | std::vector<DependencyCollector::Reference>>; | 314 | 62 | return PerRequestReferences(new Map(), | 315 | 62 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 62 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36IsImplicitlyUnwrappedOptionalRequestEEES1_v Line | Count | Source | 310 | 56 | static PerRequestReferences makeEmpty() { | 311 | 56 | using Map = | 312 | 56 | llvm::DenseMap<RequestKey<Request>, | 313 | 56 | std::vector<DependencyCollector::Reference>>; | 314 | 56 | return PerRequestReferences(new Map(), | 315 | 56 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 56 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20InterfaceTypeRequestEEES1_v Line | Count | Source | 310 | 85 | static PerRequestReferences makeEmpty() { | 311 | 85 | using Map = | 312 | 85 | llvm::DenseMap<RequestKey<Request>, | 313 | 85 | std::vector<DependencyCollector::Reference>>; | 314 | 85 | return PerRequestReferences(new Map(), | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 85 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18AccessLevelRequestEEES1_v Line | Count | Source | 310 | 85 | static PerRequestReferences makeEmpty() { | 311 | 85 | using Map = | 312 | 85 | llvm::DenseMap<RequestKey<Request>, | 313 | 85 | std::vector<DependencyCollector::Reference>>; | 314 | 85 | return PerRequestReferences(new Map(), | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 85 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31HasNoncopyableAnnotationRequestEEES1_v Line | Count | Source | 310 | 85 | static PerRequestReferences makeEmpty() { | 311 | 85 | using Map = | 312 | 85 | llvm::DenseMap<RequestKey<Request>, | 313 | 85 | std::vector<DependencyCollector::Reference>>; | 314 | 85 | return PerRequestReferences(new Map(), | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 85 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23StoredPropertiesRequestEEES1_v Line | Count | Source | 310 | 61 | static PerRequestReferences makeEmpty() { | 311 | 61 | using Map = | 312 | 61 | llvm::DenseMap<RequestKey<Request>, | 313 | 61 | std::vector<DependencyCollector::Reference>>; | 314 | 61 | return PerRequestReferences(new Map(), | 315 | 61 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 61 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29InitAccessorPropertiesRequestEEES1_v Line | Count | Source | 310 | 32 | static PerRequestReferences makeEmpty() { | 311 | 32 | using Map = | 312 | 32 | llvm::DenseMap<RequestKey<Request>, | 313 | 32 | std::vector<DependencyCollector::Reference>>; | 314 | 32 | return PerRequestReferences(new Map(), | 315 | 32 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 32 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31MemberwiseInitPropertiesRequestEEES1_v Line | Count | Source | 310 | 24 | static PerRequestReferences makeEmpty() { | 311 | 24 | using Map = | 312 | 24 | llvm::DenseMap<RequestKey<Request>, | 313 | 24 | std::vector<DependencyCollector::Reference>>; | 314 | 24 | return PerRequestReferences(new Map(), | 315 | 24 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 24 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40StoredPropertiesAndMissingMembersRequestEEES1_v Line | Count | Source | 310 | 24 | static PerRequestReferences makeEmpty() { | 311 | 24 | using Map = | 312 | 24 | llvm::DenseMap<RequestKey<Request>, | 313 | 24 | std::vector<DependencyCollector::Reference>>; | 314 | 24 | return PerRequestReferences(new Map(), | 315 | 24 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 24 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30PropertyWrapperTypeInfoRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_14IsActorRequestEEES1_v Line | Count | Source | 310 | 58 | static PerRequestReferences makeEmpty() { | 311 | 58 | using Map = | 312 | 58 | llvm::DenseMap<RequestKey<Request>, | 313 | 58 | std::vector<DependencyCollector::Reference>>; | 314 | 58 | return PerRequestReferences(new Map(), | 315 | 58 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 58 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25IsDistributedActorRequestEEES1_v Line | Count | Source | 310 | 59 | static PerRequestReferences makeEmpty() { | 311 | 59 | using Map = | 312 | 59 | llvm::DenseMap<RequestKey<Request>, | 313 | 59 | std::vector<DependencyCollector::Reference>>; | 314 | 59 | return PerRequestReferences(new Map(), | 315 | 59 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 59 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21UnderlyingTypeRequestEEES1_v Line | Count | Source | 310 | 85 | static PerRequestReferences makeEmpty() { | 311 | 85 | using Map = | 312 | 85 | llvm::DenseMap<RequestKey<Request>, | 313 | 85 | std::vector<DependencyCollector::Reference>>; | 314 | 85 | return PerRequestReferences(new Map(), | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 85 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21StructuralTypeRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28DefaultDefinitionTypeRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18EnumRawTypeRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24HasMemberwiseInitRequestEEES1_v Line | Count | Source | 310 | 35 | static PerRequestReferences makeEmpty() { | 311 | 35 | using Map = | 312 | 35 | llvm::DenseMap<RequestKey<Request>, | 313 | 35 | std::vector<DependencyCollector::Reference>>; | 314 | 35 | return PerRequestReferences(new Map(), | 315 | 35 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 35 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31SynthesizeMemberwiseInitRequestEEES1_v Line | Count | Source | 310 | 23 | static PerRequestReferences makeEmpty() { | 311 | 23 | using Map = | 312 | 23 | llvm::DenseMap<RequestKey<Request>, | 313 | 23 | std::vector<DependencyCollector::Reference>>; | 314 | 23 | return PerRequestReferences(new Map(), | 315 | 23 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 23 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37ResolveEffectiveMemberwiseInitRequestEEES1_v Line | Count | Source | 310 | 26 | static PerRequestReferences makeEmpty() { | 311 | 26 | using Map = | 312 | 26 | llvm::DenseMap<RequestKey<Request>, | 313 | 26 | std::vector<DependencyCollector::Reference>>; | 314 | 26 | return PerRequestReferences(new Map(), | 315 | 26 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 26 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21HasDefaultInitRequestEEES1_v Line | Count | Source | 310 | 38 | static PerRequestReferences makeEmpty() { | 311 | 38 | using Map = | 312 | 38 | llvm::DenseMap<RequestKey<Request>, | 313 | 38 | std::vector<DependencyCollector::Reference>>; | 314 | 38 | return PerRequestReferences(new Map(), | 315 | 38 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 38 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28SynthesizeDefaultInitRequestEEES1_v Line | Count | Source | 310 | 8 | static PerRequestReferences makeEmpty() { | 311 | 8 | using Map = | 312 | 8 | llvm::DenseMap<RequestKey<Request>, | 313 | 8 | std::vector<DependencyCollector::Reference>>; | 314 | 8 | return PerRequestReferences(new Map(), | 315 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 8 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26GlobalActorInstanceRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20GetDestructorRequestEEES1_v Line | Count | Source | 310 | 44 | static PerRequestReferences makeEmpty() { | 311 | 44 | using Map = | 312 | 44 | llvm::DenseMap<RequestKey<Request>, | 313 | 44 | std::vector<DependencyCollector::Reference>>; | 314 | 44 | return PerRequestReferences(new Map(), | 315 | 44 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 44 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21IsDefaultActorRequestEEES1_v Line | Count | Source | 310 | 5 | static PerRequestReferences makeEmpty() { | 311 | 5 | using Map = | 312 | 5 | llvm::DenseMap<RequestKey<Request>, | 313 | 5 | std::vector<DependencyCollector::Reference>>; | 314 | 5 | return PerRequestReferences(new Map(), | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 5 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_39HasMissingDesignatedInitializersRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37InheritsSuperclassInitializersRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ClassAncestryFlagsRequestEEES1_v Line | Count | Source | 310 | 18 | static PerRequestReferences makeEmpty() { | 311 | 18 | using Map = | 312 | 18 | llvm::DenseMap<RequestKey<Request>, | 313 | 18 | std::vector<DependencyCollector::Reference>>; | 314 | 18 | return PerRequestReferences(new Map(), | 315 | 18 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 18 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26HasCircularRawValueRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25InheritedProtocolsRequestEEES1_v Line | Count | Source | 310 | 70 | static PerRequestReferences makeEmpty() { | 311 | 70 | using Map = | 312 | 70 | llvm::DenseMap<RequestKey<Request>, | 313 | 70 | std::vector<DependencyCollector::Reference>>; | 314 | 70 | return PerRequestReferences(new Map(), | 315 | 70 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 70 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ProtocolRequirementsRequestEEES1_v Line | Count | Source | 310 | 34 | static PerRequestReferences makeEmpty() { | 311 | 34 | using Map = | 312 | 34 | llvm::DenseMap<RequestKey<Request>, | 313 | 34 | std::vector<DependencyCollector::Reference>>; | 314 | 34 | return PerRequestReferences(new Map(), | 315 | 34 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 34 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21SuperclassTypeRequestEEES1_v Line | Count | Source | 310 | 46 | static PerRequestReferences makeEmpty() { | 311 | 46 | using Map = | 312 | 46 | llvm::DenseMap<RequestKey<Request>, | 313 | 46 | std::vector<DependencyCollector::Reference>>; | 314 | 46 | return PerRequestReferences(new Map(), | 315 | 46 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 46 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ProtocolRequiresClassRequestEEES1_v Line | Count | Source | 310 | 40 | static PerRequestReferences makeEmpty() { | 311 | 40 | using Map = | 312 | 40 | llvm::DenseMap<RequestKey<Request>, | 313 | 40 | std::vector<DependencyCollector::Reference>>; | 314 | 40 | return PerRequestReferences(new Map(), | 315 | 40 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 40 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32ExistentialConformsToSelfRequestEEES1_v Line | Count | Source | 310 | 15 | static PerRequestReferences makeEmpty() { | 311 | 15 | using Map = | 312 | 15 | llvm::DenseMap<RequestKey<Request>, | 313 | 15 | std::vector<DependencyCollector::Reference>>; | 314 | 15 | return PerRequestReferences(new Map(), | 315 | 15 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 15 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_42HasSelfOrAssociatedTypeRequirementsRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29PrimaryAssociatedTypesRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29StructuralRequirementsRequestEEES1_v Line | Count | Source | 310 | 18 | static PerRequestReferences makeEmpty() { | 311 | 18 | using Map = | 312 | 18 | llvm::DenseMap<RequestKey<Request>, | 313 | 18 | std::vector<DependencyCollector::Reference>>; | 314 | 18 | return PerRequestReferences(new Map(), | 315 | 18 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 18 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TypeAliasRequirementsRequestEEES1_v Line | Count | Source | 310 | 11 | static PerRequestReferences makeEmpty() { | 311 | 11 | using Map = | 312 | 11 | llvm::DenseMap<RequestKey<Request>, | 313 | 11 | std::vector<DependencyCollector::Reference>>; | 314 | 11 | return PerRequestReferences(new Map(), | 315 | 11 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 11 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ProtocolDependenciesRequestEEES1_v Line | Count | Source | 310 | 70 | static PerRequestReferences makeEmpty() { | 311 | 70 | using Map = | 312 | 70 | llvm::DenseMap<RequestKey<Request>, | 313 | 70 | std::vector<DependencyCollector::Reference>>; | 314 | 70 | return PerRequestReferences(new Map(), | 315 | 70 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 70 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27RequirementSignatureRequestEEES1_v Line | Count | Source | 310 | 83 | static PerRequestReferences makeEmpty() { | 311 | 83 | using Map = | 312 | 83 | llvm::DenseMap<RequestKey<Request>, | 313 | 83 | std::vector<DependencyCollector::Reference>>; | 314 | 83 | return PerRequestReferences(new Map(), | 315 | 83 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 83 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36HasCircularInheritedProtocolsRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17HasStorageRequestEEES1_v Line | Count | Source | 310 | 85 | static PerRequestReferences makeEmpty() { | 311 | 85 | using Map = | 312 | 85 | llvm::DenseMap<RequestKey<Request>, | 313 | 85 | std::vector<DependencyCollector::Reference>>; | 314 | 85 | return PerRequestReferences(new Map(), | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 85 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22StorageImplInfoRequestEEES1_v Line | Count | Source | 310 | 85 | static PerRequestReferences makeEmpty() { | 311 | 85 | using Map = | 312 | 85 | llvm::DenseMap<RequestKey<Request>, | 313 | 85 | std::vector<DependencyCollector::Reference>>; | 314 | 85 | return PerRequestReferences(new Map(), | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 85 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24SetterAccessLevelRequestEEES1_v Line | Count | Source | 310 | 44 | static PerRequestReferences makeEmpty() { | 311 | 44 | using Map = | 312 | 44 | llvm::DenseMap<RequestKey<Request>, | 313 | 44 | std::vector<DependencyCollector::Reference>>; | 314 | 44 | return PerRequestReferences(new Map(), | 315 | 44 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 44 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22HasInitAccessorRequestEEES1_v Line | Count | Source | 310 | 53 | static PerRequestReferences makeEmpty() { | 311 | 53 | using Map = | 312 | 53 | llvm::DenseMap<RequestKey<Request>, | 313 | 53 | std::vector<DependencyCollector::Reference>>; | 314 | 53 | return PerRequestReferences(new Map(), | 315 | 53 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 53 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27DefaultInitializerIsolationEEES1_v Line | Count | Source | 310 | 62 | static PerRequestReferences makeEmpty() { | 311 | 62 | using Map = | 312 | 62 | llvm::DenseMap<RequestKey<Request>, | 313 | 62 | std::vector<DependencyCollector::Reference>>; | 314 | 62 | return PerRequestReferences(new Map(), | 315 | 62 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 62 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20NamingPatternRequestEEES1_v Line | Count | Source | 310 | 50 | static PerRequestReferences makeEmpty() { | 311 | 50 | using Map = | 312 | 50 | llvm::DenseMap<RequestKey<Request>, | 313 | 50 | std::vector<DependencyCollector::Reference>>; | 314 | 50 | return PerRequestReferences(new Map(), | 315 | 50 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 50 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ParamSpecifierRequestEEES1_v Line | Count | Source | 310 | 61 | static PerRequestReferences makeEmpty() { | 311 | 61 | using Map = | 312 | 61 | llvm::DenseMap<RequestKey<Request>, | 313 | 61 | std::vector<DependencyCollector::Reference>>; | 314 | 61 | return PerRequestReferences(new Map(), | 315 | 61 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 61 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31AttachedPropertyWrappersRequestEEES1_v Line | Count | Source | 310 | 63 | static PerRequestReferences makeEmpty() { | 311 | 63 | using Map = | 312 | 63 | llvm::DenseMap<RequestKey<Request>, | 313 | 63 | std::vector<DependencyCollector::Reference>>; | 314 | 63 | return PerRequestReferences(new Map(), | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 63 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34AttachedPropertyWrapperTypeRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_41PropertyWrapperBackingPropertyTypeRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40PropertyWrapperAuxiliaryVariablesRequestEEES1_v Line | Count | Source | 310 | 40 | static PerRequestReferences makeEmpty() { | 311 | 40 | using Map = | 312 | 40 | llvm::DenseMap<RequestKey<Request>, | 313 | 40 | std::vector<DependencyCollector::Reference>>; | 314 | 40 | return PerRequestReferences(new Map(), | 315 | 40 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 40 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37PropertyWrapperInitializerInfoRequestEEES1_v Line | Count | Source | 310 | 25 | static PerRequestReferences makeEmpty() { | 311 | 25 | using Map = | 312 | 25 | llvm::DenseMap<RequestKey<Request>, | 313 | 25 | std::vector<DependencyCollector::Reference>>; | 314 | 25 | return PerRequestReferences(new Map(), | 315 | 25 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 25 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32PropertyWrapperMutabilityRequestEEES1_v Line | Count | Source | 310 | 53 | static PerRequestReferences makeEmpty() { | 311 | 53 | using Map = | 312 | 53 | llvm::DenseMap<RequestKey<Request>, | 313 | 53 | std::vector<DependencyCollector::Reference>>; | 314 | 53 | return PerRequestReferences(new Map(), | 315 | 53 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 53 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26LazyStoragePropertyRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_33DefaultArgumentInitContextRequestEEES1_v Line | Count | Source | 310 | 8 | static PerRequestReferences makeEmpty() { | 311 | 8 | using Map = | 312 | 8 | llvm::DenseMap<RequestKey<Request>, | 313 | 8 | std::vector<DependencyCollector::Reference>>; | 314 | 8 | return PerRequestReferences(new Map(), | 315 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 8 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26DefaultArgumentExprRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26DefaultArgumentTypeRequestEEES1_v Line | Count | Source | 310 | 40 | static PerRequestReferences makeEmpty() { | 311 | 40 | using Map = | 312 | 40 | llvm::DenseMap<RequestKey<Request>, | 313 | 40 | std::vector<DependencyCollector::Reference>>; | 314 | 40 | return PerRequestReferences(new Map(), | 315 | 40 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 40 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ResultBuilderTypeRequestEEES1_v Line | Count | Source | 310 | 55 | static PerRequestReferences makeEmpty() { | 311 | 55 | using Map = | 312 | 55 | llvm::DenseMap<RequestKey<Request>, | 313 | 55 | std::vector<DependencyCollector::Reference>>; | 314 | 55 | return PerRequestReferences(new Map(), | 315 | 55 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 55 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28AttachedResultBuilderRequestEEES1_v Line | Count | Source | 310 | 53 | static PerRequestReferences makeEmpty() { | 311 | 53 | using Map = | 312 | 53 | llvm::DenseMap<RequestKey<Request>, | 313 | 53 | std::vector<DependencyCollector::Reference>>; | 314 | 53 | return PerRequestReferences(new Map(), | 315 | 53 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 53 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17ResultTypeRequestEEES1_v Line | Count | Source | 310 | 64 | static PerRequestReferences makeEmpty() { | 311 | 64 | using Map = | 312 | 64 | llvm::DenseMap<RequestKey<Request>, | 313 | 64 | std::vector<DependencyCollector::Reference>>; | 314 | 64 | return PerRequestReferences(new Map(), | 315 | 64 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 64 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18RenamedDeclRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32ParseAbstractFunctionBodyRequestEEES1_v Line | Count | Source | 310 | 58 | static PerRequestReferences makeEmpty() { | 311 | 58 | using Map = | 312 | 58 | llvm::DenseMap<RequestKey<Request>, | 313 | 58 | std::vector<DependencyCollector::Reference>>; | 314 | 58 | return PerRequestReferences(new Map(), | 315 | 58 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 58 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TypeCheckFunctionBodyRequestEEES1_v Line | Count | Source | 310 | 59 | static PerRequestReferences makeEmpty() { | 311 | 59 | using Map = | 312 | 59 | llvm::DenseMap<RequestKey<Request>, | 313 | 59 | std::vector<DependencyCollector::Reference>>; | 314 | 59 | return PerRequestReferences(new Map(), | 315 | 59 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 59 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28IsFunctionBodySkippedRequestEEES1_v Line | Count | Source | 310 | 63 | static PerRequestReferences makeEmpty() { | 311 | 63 | using Map = | 312 | 63 | llvm::DenseMap<RequestKey<Request>, | 313 | 63 | std::vector<DependencyCollector::Reference>>; | 314 | 63 | return PerRequestReferences(new Map(), | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 63 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26NeedsNewVTableEntryRequestEEES1_v Line | Count | Source | 310 | 9 | static PerRequestReferences makeEmpty() { | 311 | 9 | using Map = | 312 | 9 | llvm::DenseMap<RequestKey<Request>, | 313 | 9 | std::vector<DependencyCollector::Reference>>; | 314 | 9 | return PerRequestReferences(new Map(), | 315 | 9 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 9 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23FunctionOperatorRequestEEES1_v Line | Count | Source | 310 | 34 | static PerRequestReferences makeEmpty() { | 311 | 34 | using Map = | 312 | 34 | llvm::DenseMap<RequestKey<Request>, | 313 | 34 | std::vector<DependencyCollector::Reference>>; | 314 | 34 | return PerRequestReferences(new Map(), | 315 | 34 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 34 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_15IsStaticRequestEEES1_v Line | Count | Source | 310 | 62 | static PerRequestReferences makeEmpty() { | 311 | 62 | using Map = | 312 | 62 | llvm::DenseMap<RequestKey<Request>, | 313 | 62 | std::vector<DependencyCollector::Reference>>; | 314 | 62 | return PerRequestReferences(new Map(), | 315 | 62 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 62 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19SimpleDidSetRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21SelfAccessKindRequestEEES1_v Line | Count | Source | 310 | 57 | static PerRequestReferences makeEmpty() { | 311 | 57 | using Map = | 312 | 57 | llvm::DenseMap<RequestKey<Request>, | 313 | 57 | std::vector<DependencyCollector::Reference>>; | 314 | 57 | return PerRequestReferences(new Map(), | 315 | 57 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 57 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20EnumRawValuesRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_15InitKindRequestEEES1_v Line | Count | Source | 310 | 56 | static PerRequestReferences makeEmpty() { | 311 | 56 | using Map = | 312 | 56 | llvm::DenseMap<RequestKey<Request>, | 313 | 56 | std::vector<DependencyCollector::Reference>>; | 314 | 56 | return PerRequestReferences(new Map(), | 315 | 56 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 56 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19BodyInitKindRequestEEES1_v Line | Count | Source | 310 | 101 | static PerRequestReferences makeEmpty() { | 311 | 101 | using Map = | 312 | 101 | llvm::DenseMap<RequestKey<Request>, | 313 | 101 | std::vector<DependencyCollector::Reference>>; | 314 | 101 | return PerRequestReferences(new Map(), | 315 | 101 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 101 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30OperatorPrecedenceGroupRequestEEES1_v Line | Count | Source | 310 | 38 | static PerRequestReferences makeEmpty() { | 311 | 38 | using Map = | 312 | 38 | llvm::DenseMap<RequestKey<Request>, | 313 | 38 | std::vector<DependencyCollector::Reference>>; | 314 | 38 | return PerRequestReferences(new Map(), | 315 | 38 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 38 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ActorIsolationRequestEEES1_v Line | Count | Source | 310 | 63 | static PerRequestReferences makeEmpty() { | 311 | 63 | using Map = | 312 | 63 | llvm::DenseMap<RequestKey<Request>, | 313 | 63 | std::vector<DependencyCollector::Reference>>; | 314 | 63 | return PerRequestReferences(new Map(), | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 63 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ExpandMacroExpansionExprRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22MacroDefinitionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ResolveImplicitMemberRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26FragileFunctionKindRequestEEES1_v Line | Count | Source | 310 | 63 | static PerRequestReferences makeEmpty() { | 311 | 63 | using Map = | 312 | 63 | llvm::DenseMap<RequestKey<Request>, | 313 | 63 | std::vector<DependencyCollector::Reference>>; | 314 | 63 | return PerRequestReferences(new Map(), | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 63 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ParseMembersRequestEEES1_v Line | Count | Source | 310 | 40 | static PerRequestReferences makeEmpty() { | 311 | 40 | using Map = | 312 | 40 | llvm::DenseMap<RequestKey<Request>, | 313 | 40 | std::vector<DependencyCollector::Reference>>; | 314 | 40 | return PerRequestReferences(new Map(), | 315 | 40 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 40 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17ABIMembersRequestEEES1_v Line | Count | Source | 310 | 36 | static PerRequestReferences makeEmpty() { | 311 | 36 | using Map = | 312 | 36 | llvm::DenseMap<RequestKey<Request>, | 313 | 36 | std::vector<DependencyCollector::Reference>>; | 314 | 36 | return PerRequestReferences(new Map(), | 315 | 36 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 36 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17AllMembersRequestEEES1_v Line | Count | Source | 310 | 27 | static PerRequestReferences makeEmpty() { | 311 | 27 | using Map = | 312 | 27 | llvm::DenseMap<RequestKey<Request>, | 313 | 27 | std::vector<DependencyCollector::Reference>>; | 314 | 27 | return PerRequestReferences(new Map(), | 315 | 27 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 27 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_48GetDistributedActorArgumentDecodingMethodRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_43GetDistributedActorInvocationDecoderRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26GetDistributedThunkRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40GetDistributedActorSystemPropertyRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36GetDistributedActorIDPropertyRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27SemanticBriefCommentRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36PolymorphicEffectRequirementsRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28PolymorphicEffectKindRequestEEES1_v Line | Count | Source | 310 | 50 | static PerRequestReferences makeEmpty() { | 311 | 50 | using Map = | 312 | 50 | llvm::DenseMap<RequestKey<Request>, | 313 | 50 | std::vector<DependencyCollector::Reference>>; | 314 | 50 | return PerRequestReferences(new Map(), | 315 | 50 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 50 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ConformanceHasEffectRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31CallerSideDefaultArgExprRequestEEES1_v Line | Count | Source | 310 | 38 | static PerRequestReferences makeEmpty() { | 311 | 38 | using Map = | 312 | 38 | llvm::DenseMap<RequestKey<Request>, | 313 | 38 | std::vector<DependencyCollector::Reference>>; | 314 | 38 | return PerRequestReferences(new Map(), | 315 | 38 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 38 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ClosureEffectsRequestEEES1_v Line | Count | Source | 310 | 39 | static PerRequestReferences makeEmpty() { | 311 | 39 | using Map = | 312 | 39 | llvm::DenseMap<RequestKey<Request>, | 313 | 39 | std::vector<DependencyCollector::Reference>>; | 314 | 39 | return PerRequestReferences(new Map(), | 315 | 39 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 39 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31AbstractGenericSignatureRequestEEES1_v Line | Count | Source | 310 | 51 | static PerRequestReferences makeEmpty() { | 311 | 51 | using Map = | 312 | 51 | llvm::DenseMap<RequestKey<Request>, | 313 | 51 | std::vector<DependencyCollector::Reference>>; | 314 | 51 | return PerRequestReferences(new Map(), | 315 | 51 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 51 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22IsNonUserModuleRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ModuleImplicitImportsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25PrimarySourceFilesRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26MangleLocalTypeDeclRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ExpandExtensionMacrosEEES1_v Line | Count | Source | 310 | 68 | static PerRequestReferences makeEmpty() { | 311 | 68 | using Map = | 312 | 68 | llvm::DenseMap<RequestKey<Request>, | 313 | 68 | std::vector<DependencyCollector::Reference>>; | 314 | 68 | return PerRequestReferences(new Map(), | 315 | 68 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 68 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_39ImplicitKnownProtocolConformanceRequestEEES1_v Line | Count | Source | 310 | 36 | static PerRequestReferences makeEmpty() { | 311 | 36 | using Map = | 312 | 36 | llvm::DenseMap<RequestKey<Request>, | 313 | 36 | std::vector<DependencyCollector::Reference>>; | 314 | 36 | return PerRequestReferences(new Map(), | 315 | 36 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 36 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_41GetDistributedActorImplicitCodableRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ParseSourceFileRequestEEES1_v Line | Count | Source | 310 | 85 | static PerRequestReferences makeEmpty() { | 311 | 85 | using Map = | 312 | 85 | llvm::DenseMap<RequestKey<Request>, | 313 | 85 | std::vector<DependencyCollector::Reference>>; | 314 | 85 | return PerRequestReferences(new Map(), | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 85 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29HasImportsMatchingFlagRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_16SPIGroupsRequestEEES1_v Line | Count | Source | 310 | 63 | static PerRequestReferences makeEmpty() { | 311 | 63 | using Map = | 312 | 63 | llvm::DenseMap<RequestKey<Request>, | 313 | 63 | std::vector<DependencyCollector::Reference>>; | 314 | 63 | return PerRequestReferences(new Map(), | 315 | 63 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 63 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ModuleLibraryLevelRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ParseTopLevelDeclsRequestEEES1_v Line | Count | Source | 310 | 85 | static PerRequestReferences makeEmpty() { | 311 | 85 | using Map = | 312 | 85 | llvm::DenseMap<RequestKey<Request>, | 313 | 85 | std::vector<DependencyCollector::Reference>>; | 314 | 85 | return PerRequestReferences(new Map(), | 315 | 85 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 85 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ExportedSourceFileRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22GetSourceFileAsyncNodeEEES1_v Line | Count | Source | 310 | 45 | static PerRequestReferences makeEmpty() { | 311 | 45 | using Map = | 312 | 45 | llvm::DenseMap<RequestKey<Request>, | 313 | 45 | std::vector<DependencyCollector::Reference>>; | 314 | 45 | return PerRequestReferences(new Map(), | 315 | 45 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 45 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32LookupConformanceInModuleRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21LookupInModuleRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_35ExpandSynthesizedMemberMacroRequestEEES1_v Line | Count | Source | 310 | 39 | static PerRequestReferences makeEmpty() { | 311 | 39 | using Map = | 312 | 39 | llvm::DenseMap<RequestKey<Request>, | 313 | 39 | std::vector<DependencyCollector::Reference>>; | 314 | 39 | return PerRequestReferences(new Map(), | 315 | 39 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 39 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40PotentialMacroExpansionsInContextRequestEEES1_v Line | Count | Source | 310 | 27 | static PerRequestReferences makeEmpty() { | 311 | 27 | using Map = | 312 | 27 | llvm::DenseMap<RequestKey<Request>, | 313 | 27 | std::vector<DependencyCollector::Reference>>; | 314 | 27 | return PerRequestReferences(new Map(), | 315 | 27 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 27 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21SuperclassDeclRequestEEES1_v Line | Count | Source | 310 | 54 | static PerRequestReferences makeEmpty() { | 311 | 54 | using Map = | 312 | 54 | llvm::DenseMap<RequestKey<Request>, | 313 | 54 | std::vector<DependencyCollector::Reference>>; | 314 | 54 | return PerRequestReferences(new Map(), | 315 | 54 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 54 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30IsCallAsFunctionNominalRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_38HasDynamicMemberLookupAttributeRequestEEES1_v Line | Count | Source | 310 | 42 | static PerRequestReferences makeEmpty() { | 311 | 42 | using Map = | 312 | 42 | llvm::DenseMap<RequestKey<Request>, | 313 | 42 | std::vector<DependencyCollector::Reference>>; | 314 | 42 | return PerRequestReferences(new Map(), | 315 | 42 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 42 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34HasDynamicCallableAttributeRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32SelfBoundsFromWhereClauseRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37SelfBoundsFromGenericSignatureRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24UnqualifiedLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19DirectLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24CXXNamespaceMemberLookupEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22AnyObjectLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22QualifiedLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ModuleQualifiedLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36UnderlyingTypeDeclsReferencedRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31InheritedDeclsReferencedRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26LookupInfixOperatorRequestEEES1_v Line | Count | Source | 310 | 46 | static PerRequestReferences makeEmpty() { | 311 | 46 | using Map = | 312 | 46 | llvm::DenseMap<RequestKey<Request>, | 313 | 46 | std::vector<DependencyCollector::Reference>>; | 314 | 46 | return PerRequestReferences(new Map(), | 315 | 46 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 46 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27LookupPrefixOperatorRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28LookupPostfixOperatorRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28LookupPrecedenceGroupRequestEEES1_v Line | Count | Source | 310 | 30 | static PerRequestReferences makeEmpty() { | 311 | 30 | using Map = | 312 | 30 | llvm::DenseMap<RequestKey<Request>, | 313 | 30 | std::vector<DependencyCollector::Reference>>; | 314 | 30 | return PerRequestReferences(new Map(), | 315 | 30 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 30 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23ExprPatternMatchRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30ConditionalRequirementsRequestEEES1_v Line | Count | Source | 310 | 62 | static PerRequestReferences makeEmpty() { | 311 | 62 | using Map = | 312 | 62 | llvm::DenseMap<RequestKey<Request>, | 313 | 62 | std::vector<DependencyCollector::Reference>>; | 314 | 62 | return PerRequestReferences(new Map(), | 315 | 62 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 62 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18TypeWitnessRequestEEES1_v Line | Count | Source | 310 | 21 | static PerRequestReferences makeEmpty() { | 311 | 21 | using Map = | 312 | 21 | llvm::DenseMap<RequestKey<Request>, | 313 | 21 | std::vector<DependencyCollector::Reference>>; | 314 | 21 | return PerRequestReferences(new Map(), | 315 | 21 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 21 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28AssociatedConformanceRequestEEES1_v Line | Count | Source | 310 | 32 | static PerRequestReferences makeEmpty() { | 311 | 32 | using Map = | 312 | 32 | llvm::DenseMap<RequestKey<Request>, | 313 | 32 | std::vector<DependencyCollector::Reference>>; | 314 | 32 | return PerRequestReferences(new Map(), | 315 | 32 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 32 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ValueWitnessRequestEEES1_v Line | Count | Source | 310 | 48 | static PerRequestReferences makeEmpty() { | 311 | 48 | using Map = | 312 | 48 | llvm::DenseMap<RequestKey<Request>, | 313 | 48 | std::vector<DependencyCollector::Reference>>; | 314 | 48 | return PerRequestReferences(new Map(), | 315 | 48 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 48 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37LookupAllConformancesInContextRequestEEES1_v Line | Count | Source | 310 | 43 | static PerRequestReferences makeEmpty() { | 311 | 43 | using Map = | 312 | 43 | llvm::DenseMap<RequestKey<Request>, | 313 | 43 | std::vector<DependencyCollector::Reference>>; | 314 | 43 | return PerRequestReferences(new Map(), | 315 | 43 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 43 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17RawCommentRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24IsSingleValueStmtRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18BreakTargetRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ContinueTargetRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20IsNoncopyableRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18RequirementRequestEEES1_v Line | Count | Source | 310 | 33 | static PerRequestReferences makeEmpty() { | 311 | 33 | using Map = | 312 | 33 | llvm::DenseMap<RequestKey<Request>, | 313 | 33 | std::vector<DependencyCollector::Reference>>; | 314 | 33 | return PerRequestReferences(new Map(), | 315 | 33 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 33 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40ExpandChildTypeRefinementContextsRequestEEES1_v Line | Count | Source | 310 | 44 | static PerRequestReferences makeEmpty() { | 311 | 44 | using Map = | 312 | 44 | llvm::DenseMap<RequestKey<Request>, | 313 | 44 | std::vector<DependencyCollector::Reference>>; | 314 | 44 | return PerRequestReferences(new Map(), | 315 | 44 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 44 | } |
|
317 | | |
318 | | template <typename Request> |
319 | | llvm::DenseMap<RequestKey<Request>, |
320 | | std::vector<DependencyCollector::Reference>> * |
321 | 26.7M | get() const { |
322 | 26.7M | using Map = |
323 | 26.7M | llvm::DenseMap<RequestKey<Request>, |
324 | 26.7M | std::vector<DependencyCollector::Reference>>; |
325 | 26.7M | assert(Storage); |
326 | 0 | return static_cast<Map *>(Storage); |
327 | 26.7M | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18OptimizedIRRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22SymbolSourceMapRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv ClangSyntaxPrinter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20USRGenerationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 8 | get() const { | 322 | 8 | using Map = | 323 | 8 | llvm::DenseMap<RequestKey<Request>, | 324 | 8 | std::vector<DependencyCollector::Reference>>; | 325 | 8 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 8 | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18RenamedDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Frontend.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24IDEInspectionFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ConstExtract.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ConstantValueInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: GenClass.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: GenDistributed.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: GenDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: GenEnum.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: GenHeap.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: GenMeta.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IRGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22SymbolSourceMapRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv IRGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_12IRGenRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 147 | get() const { | 322 | 147 | using Map = | 323 | 147 | llvm::DenseMap<RequestKey<Request>, | 324 | 147 | std::vector<DependencyCollector::Reference>>; | 325 | 147 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 147 | } |
Unexecuted instantiation: IRGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17LoweredSILRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TBDGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20PublicSymbolsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TBDGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18GenerateTBDRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TBDGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_13APIGenRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv SILGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18ASTLoweringRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 236 | get() const { | 322 | 236 | using Map = | 323 | 236 | llvm::DenseMap<RequestKey<Request>, | 324 | 236 | std::vector<DependencyCollector::Reference>>; | 325 | 236 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 236 | } |
Unexecuted instantiation: SILGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ParseSILModuleRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Common.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28TangentStoredPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 88 | get() const { | 322 | 88 | using Map = | 323 | 88 | llvm::DenseMap<RequestKey<Request>, | 324 | 88 | std::vector<DependencyCollector::Reference>>; | 325 | 88 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 88 | } |
Unexecuted instantiation: PassManager.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25ExecuteSILPipelineRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18ASTLoweringRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDERequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ProvideDefaultImplForRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26ResolveProtocolNameRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ProvideDefaultImplForRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29CollectOverriddenDeclsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23IsDeclApplicableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24TypeRelationCheckRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37RootTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27DirectOperatorLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34DirectPrecedenceGroupLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Serialization.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26MangleLocalTypeDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ParseSIL.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24UnqualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: BuilderTransform.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28PreCheckResultBuilderRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: CSApply.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31ExpandMacroExpansionExprRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv CSRanking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32CompareDeclSpecializationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 4.46k | get() const { | 322 | 4.46k | using Map = | 323 | 4.46k | llvm::DenseMap<RequestKey<Request>, | 324 | 4.46k | std::vector<DependencyCollector::Reference>>; | 325 | 4.46k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 4.46k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29EnumElementExprPatternRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34HasDynamicCallableAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24UnqualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv CSStep.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25IsDeclRefinementOfRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 5.67k | get() const { | 322 | 5.67k | using Map = | 323 | 5.67k | llvm::DenseMap<RequestKey<Request>, | 324 | 5.67k | std::vector<DependencyCollector::Reference>>; | 325 | 5.67k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 5.67k | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18CxxRecordSemanticsEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv CodeSynthesis.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_35HasUserDefinedDesignatedInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 977 | get() const { | 322 | 977 | using Map = | 323 | 977 | llvm::DenseMap<RequestKey<Request>, | 324 | 977 | std::vector<DependencyCollector::Reference>>; | 325 | 977 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 977 | } |
CodeSynthesis.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_44AreAllStoredPropertiesDefaultInitableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 46 | get() const { | 322 | 46 | using Map = | 323 | 46 | llvm::DenseMap<RequestKey<Request>, | 324 | 46 | std::vector<DependencyCollector::Reference>>; | 325 | 46 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 46 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ClosureEffectsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv ConstraintSystem.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31ClosureHasExplicitResultRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 28 | get() const { | 322 | 28 | using Map = | 323 | 28 | llvm::DenseMap<RequestKey<Request>, | 324 | 28 | std::vector<DependencyCollector::Reference>>; | 325 | 28 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 28 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23IsDeclApplicableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37RootTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: MiscDiagnostics.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24UnqualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: PreCheckExpr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25PreCheckReturnStmtRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29SynthesizeMainFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21CustomAttrTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28IsCCompatibleFuncDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ResolveMacroConformancesEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31InferredGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27GlobalActorAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24UnqualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27GlobalActorAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21CustomAttrTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22HasIsolatedSelfRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_35DistributedModuleIsAvailableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31CheckDistributedFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30ValidatePrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 432 | get() const { | 322 | 432 | using Map = | 323 | 432 | llvm::DenseMap<RequestKey<Request>, | 324 | 432 | std::vector<DependencyCollector::Reference>>; | 325 | 432 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 432 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_35ExpandSynthesizedMemberMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29SynthesizeMainFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 266 | get() const { | 322 | 266 | using Map = | 323 | 266 | llvm::DenseMap<RequestKey<Request>, | 324 | 266 | std::vector<DependencyCollector::Reference>>; | 325 | 266 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 266 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36HasCircularInheritedProtocolsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26HasCircularRawValueRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22OverriddenDeclsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30IsABICompatibleOverrideRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ResolveImplicitMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34TypeCheckObjCImplementationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20InheritedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30ExternalMacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25CheckRedeclarationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 12.3k | get() const { | 322 | 12.3k | using Map = | 323 | 12.3k | llvm::DenseMap<RequestKey<Request>, | 324 | 12.3k | std::vector<DependencyCollector::Reference>>; | 325 | 12.3k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 12.3k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ExpandExtensionMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22ApplyAccessNoteRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 21.5k | get() const { | 322 | 21.5k | using Map = | 323 | 21.5k | llvm::DenseMap<RequestKey<Request>, | 324 | 21.5k | std::vector<DependencyCollector::Reference>>; | 325 | 21.5k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 21.5k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19ResolveMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ResolveImplicitMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27DirectOperatorLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34DirectPrecedenceGroupLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckExpr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18DefaultTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 326k | get() const { | 322 | 326k | using Map = | 323 | 326k | llvm::DenseMap<RequestKey<Request>, | 324 | 326k | std::vector<DependencyCollector::Reference>>; | 325 | 326k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 326k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31InferredGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckInvertible.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31HasNoncopyableAnnotationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30ExternalMacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25CompilerPluginLoadRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31ExpandMacroExpansionDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24UnqualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckPattern.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18PatternTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2.16k | get() const { | 322 | 2.16k | using Map = | 323 | 2.16k | llvm::DenseMap<RequestKey<Request>, | 324 | 2.16k | std::vector<DependencyCollector::Reference>>; | 325 | 2.16k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2.16k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31AttachedPropertyWrappersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21CustomAttrTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_40PotentialMacroExpansionsInContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20InheritedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 974 | get() const { | 322 | 974 | using Map = | 323 | 974 | llvm::DenseMap<RequestKey<Request>, | 324 | 974 | std::vector<DependencyCollector::Reference>>; | 325 | 974 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 974 | } |
TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.02k | get() const { | 322 | 1.02k | using Map = | 323 | 1.02k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.02k | std::vector<DependencyCollector::Reference>>; | 325 | 1.02k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.02k | } |
TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21CustomAttrTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 25 | get() const { | 322 | 25 | using Map = | 323 | 25 | llvm::DenseMap<RequestKey<Request>, | 324 | 25 | std::vector<DependencyCollector::Reference>>; | 325 | 25 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 25 | } |
TypeCheckStmt.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25PreCheckReturnStmtRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 18 | get() const { | 322 | 18 | using Map = | 323 | 18 | llvm::DenseMap<RequestKey<Request>, | 324 | 18 | std::vector<DependencyCollector::Reference>>; | 325 | 18 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 18 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27PreCheckFunctionBodyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_35ExpandSynthesizedMemberMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22ExpandPeerMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckStorage.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32PropertyWrapperLValuenessRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 84 | get() const { | 322 | 84 | using Map = | 323 | 84 | llvm::DenseMap<RequestKey<Request>, | 324 | 84 | std::vector<DependencyCollector::Reference>>; | 325 | 84 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 84 | } |
TypeCheckStorage.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20ExpandAccessorMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 20 | get() const { | 322 | 20 | using Map = | 323 | 20 | llvm::DenseMap<RequestKey<Request>, | 324 | 20 | std::vector<DependencyCollector::Reference>>; | 325 | 20 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 20 | } |
Unexecuted instantiation: TypeCheckType.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18ResolveTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26TypeCheckSourceFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 437 | get() const { | 322 | 437 | using Map = | 323 | 437 | llvm::DenseMap<RequestKey<Request>, | 324 | 437 | std::vector<DependencyCollector::Reference>>; | 325 | 437 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 437 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_49CheckInconsistentImplementationOnlyImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_38CheckInconsistentSPIOnlyImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36CheckInconsistentAccessLevelOnImportEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_41CheckInconsistentWeakLinkedImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31InferredGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 360 | get() const { | 322 | 360 | using Map = | 323 | 360 | llvm::DenseMap<RequestKey<Request>, | 324 | 360 | std::vector<DependencyCollector::Reference>>; | 325 | 360 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 360 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28TypeCheckASTNodeAtLocRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ClangDerivedConformances.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23ClangRecordMemberLookupEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37ObjCInterfaceAndImplementationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ClangDirectLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23ClangRecordMemberLookupEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26ClangCategoryLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18CxxRecordSemanticsEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ImportName.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18IsSafeUseOfCxxDeclEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ImportType.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20CxxRecordAsSwiftTypeEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Parser.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30IDEInspectionSecondPassRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Parser.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ParseRequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22ParseSourceFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: AccessRequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31TypeDeclsFromWhereClauseRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22HasIsolatedSelfRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTPrinter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ClangDirectLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ResolveMacroConformancesEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30TypeEraserHasViableInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ResolveTypeEraserTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31ResolveRawLayoutLikeTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31SpecializeAttrTargetDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36SerializeAttrGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_39DifferentiableAttributeTypeCheckRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 5.46k | get() const { | 322 | 5.46k | using Map = | 323 | 5.46k | llvm::DenseMap<RequestKey<Request>, | 324 | 5.46k | std::vector<DependencyCollector::Reference>>; | 325 | 5.46k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 5.46k | } |
Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_33DerivativeAttrOriginalDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 140 | get() const { | 322 | 140 | using Map = | 323 | 140 | llvm::DenseMap<RequestKey<Request>, | 324 | 140 | std::vector<DependencyCollector::Reference>>; | 325 | 140 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 140 | } |
Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29ImplementsAttrProtocolRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 163 | get() const { | 322 | 163 | using Map = | 323 | 163 | llvm::DenseMap<RequestKey<Request>, | 324 | 163 | std::vector<DependencyCollector::Reference>>; | 325 | 163 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 163 | } |
Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_38InitAccessorReferencedVariablesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Availability.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_33SemanticAvailableRangeAttrRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Availability.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30SemanticUnavailableAttrRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 38.0k | get() const { | 322 | 38.0k | using Map = | 323 | 38.0k | llvm::DenseMap<RequestKey<Request>, | 324 | 38.0k | std::vector<DependencyCollector::Reference>>; | 325 | 38.0k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 38.0k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27ExpandMemberAttributeMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 119k | get() const { | 322 | 119k | using Map = | 323 | 119k | llvm::DenseMap<RequestKey<Request>, | 324 | 119k | std::vector<DependencyCollector::Reference>>; | 325 | 119k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 119k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22ExpandPeerMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 33.0k | get() const { | 322 | 33.0k | using Map = | 323 | 33.0k | llvm::DenseMap<RequestKey<Request>, | 324 | 33.0k | std::vector<DependencyCollector::Reference>>; | 325 | 33.0k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 33.0k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31ExpandMacroExpansionDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19ResolveMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 75 | get() const { | 322 | 75 | using Map = | 323 | 75 | llvm::DenseMap<RequestKey<Request>, | 324 | 75 | std::vector<DependencyCollector::Reference>>; | 325 | 75 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 75 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21CustomAttrTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27GlobalActorAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.09M | get() const { | 322 | 1.09M | using Map = | 323 | 1.09M | llvm::DenseMap<RequestKey<Request>, | 324 | 1.09M | std::vector<DependencyCollector::Reference>>; | 325 | 1.09M | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.09M | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17ThrownTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28IsAccessorTransparentRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 513 | get() const { | 322 | 513 | using Map = | 323 | 513 | llvm::DenseMap<RequestKey<Request>, | 324 | 513 | std::vector<DependencyCollector::Reference>>; | 325 | 513 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 513 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23GenericParamListRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.41M | get() const { | 322 | 1.41M | using Map = | 323 | 1.41M | llvm::DenseMap<RequestKey<Request>, | 324 | 1.41M | std::vector<DependencyCollector::Reference>>; | 325 | 1.41M | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.41M | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23GenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.58M | get() const { | 322 | 1.58M | using Map = | 323 | 1.58M | llvm::DenseMap<RequestKey<Request>, | 324 | 1.58M | std::vector<DependencyCollector::Reference>>; | 325 | 1.58M | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.58M | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25ScopedImportLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20InheritedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22ExtendedNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 273 | get() const { | 322 | 273 | using Map = | 323 | 273 | llvm::DenseMap<RequestKey<Request>, | 324 | 273 | std::vector<DependencyCollector::Reference>>; | 325 | 273 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 273 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31DefaultAndMaxAccessLevelRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 180 | get() const { | 322 | 180 | using Map = | 323 | 180 | llvm::DenseMap<RequestKey<Request>, | 324 | 180 | std::vector<DependencyCollector::Reference>>; | 325 | 180 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 180 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 728 | get() const { | 322 | 728 | using Map = | 323 | 728 | llvm::DenseMap<RequestKey<Request>, | 324 | 728 | std::vector<DependencyCollector::Reference>>; | 325 | 728 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 728 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26PatternBindingEntryRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 662 | get() const { | 322 | 662 | using Map = | 323 | 662 | llvm::DenseMap<RequestKey<Request>, | 324 | 662 | std::vector<DependencyCollector::Reference>>; | 325 | 662 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 662 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30RequiresOpaqueAccessorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 12.0k | get() const { | 322 | 12.0k | using Map = | 323 | 12.0k | llvm::DenseMap<RequestKey<Request>, | 324 | 12.0k | std::vector<DependencyCollector::Reference>>; | 325 | 12.0k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 12.0k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36RequiresOpaqueModifyCoroutineRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 3.11k | get() const { | 322 | 3.11k | using Map = | 323 | 3.11k | llvm::DenseMap<RequestKey<Request>, | 324 | 3.11k | std::vector<DependencyCollector::Reference>>; | 325 | 3.11k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 3.11k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25SynthesizeAccessorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 449 | get() const { | 322 | 449 | using Map = | 323 | 449 | llvm::DenseMap<RequestKey<Request>, | 324 | 449 | std::vector<DependencyCollector::Reference>>; | 325 | 449 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 449 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30IsABICompatibleOverrideRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 55 | get() const { | 322 | 55 | using Map = | 323 | 55 | llvm::DenseMap<RequestKey<Request>, | 324 | 55 | std::vector<DependencyCollector::Reference>>; | 325 | 55 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 55 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23IsGetterMutatingRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 13.9k | get() const { | 322 | 13.9k | using Map = | 323 | 13.9k | llvm::DenseMap<RequestKey<Request>, | 324 | 13.9k | std::vector<DependencyCollector::Reference>>; | 325 | 13.9k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 13.9k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23IsSetterMutatingRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 9.21k | get() const { | 322 | 9.21k | using Map = | 323 | 9.21k | llvm::DenseMap<RequestKey<Request>, | 324 | 9.21k | std::vector<DependencyCollector::Reference>>; | 325 | 9.21k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 9.21k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26OpaqueReadOwnershipRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 8.81k | get() const { | 322 | 8.81k | using Map = | 323 | 8.81k | llvm::DenseMap<RequestKey<Request>, | 324 | 8.81k | std::vector<DependencyCollector::Reference>>; | 325 | 8.81k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 8.81k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 6 | get() const { | 322 | 6 | using Map = | 323 | 6 | llvm::DenseMap<RequestKey<Request>, | 324 | 6 | std::vector<DependencyCollector::Reference>>; | 325 | 6 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 6 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22OverriddenDeclsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 363k | get() const { | 322 | 363k | using Map = | 323 | 363k | llvm::DenseMap<RequestKey<Request>, | 324 | 363k | std::vector<DependencyCollector::Reference>>; | 325 | 363k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 363k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23OpaqueResultTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_13IsObjCRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 560k | get() const { | 322 | 560k | using Map = | 323 | 560k | llvm::DenseMap<RequestKey<Request>, | 324 | 560k | std::vector<DependencyCollector::Reference>>; | 325 | 560k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 560k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_14IsFinalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 29.2k | get() const { | 322 | 29.2k | using Map = | 323 | 29.2k | llvm::DenseMap<RequestKey<Request>, | 324 | 29.2k | std::vector<DependencyCollector::Reference>>; | 325 | 29.2k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 29.2k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18IsEscapableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 4.15k | get() const { | 322 | 4.15k | using Map = | 323 | 4.15k | llvm::DenseMap<RequestKey<Request>, | 324 | 4.15k | std::vector<DependencyCollector::Reference>>; | 325 | 4.15k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 4.15k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_16IsDynamicRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 17.1k | get() const { | 322 | 17.1k | using Map = | 323 | 17.1k | llvm::DenseMap<RequestKey<Request>, | 324 | 17.1k | std::vector<DependencyCollector::Reference>>; | 325 | 17.1k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 17.1k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30DynamicallyReplacedDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 21.7k | get() const { | 322 | 21.7k | using Map = | 323 | 21.7k | llvm::DenseMap<RequestKey<Request>, | 324 | 21.7k | std::vector<DependencyCollector::Reference>>; | 325 | 21.7k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 21.7k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36IsImplicitlyUnwrappedOptionalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 848k | get() const { | 322 | 848k | using Map = | 323 | 848k | llvm::DenseMap<RequestKey<Request>, | 324 | 848k | std::vector<DependencyCollector::Reference>>; | 325 | 848k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 848k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20InterfaceTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 10.9M | get() const { | 322 | 10.9M | using Map = | 323 | 10.9M | llvm::DenseMap<RequestKey<Request>, | 324 | 10.9M | std::vector<DependencyCollector::Reference>>; | 325 | 10.9M | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 10.9M | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18AccessLevelRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.18M | get() const { | 322 | 1.18M | using Map = | 323 | 1.18M | llvm::DenseMap<RequestKey<Request>, | 324 | 1.18M | std::vector<DependencyCollector::Reference>>; | 325 | 1.18M | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.18M | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31HasNoncopyableAnnotationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 126k | get() const { | 322 | 126k | using Map = | 323 | 126k | llvm::DenseMap<RequestKey<Request>, | 324 | 126k | std::vector<DependencyCollector::Reference>>; | 325 | 126k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 126k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23StoredPropertiesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 166k | get() const { | 322 | 166k | using Map = | 323 | 166k | llvm::DenseMap<RequestKey<Request>, | 324 | 166k | std::vector<DependencyCollector::Reference>>; | 325 | 166k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 166k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29InitAccessorPropertiesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 836 | get() const { | 322 | 836 | using Map = | 323 | 836 | llvm::DenseMap<RequestKey<Request>, | 324 | 836 | std::vector<DependencyCollector::Reference>>; | 325 | 836 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 836 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31MemberwiseInitPropertiesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 380 | get() const { | 322 | 380 | using Map = | 323 | 380 | llvm::DenseMap<RequestKey<Request>, | 324 | 380 | std::vector<DependencyCollector::Reference>>; | 325 | 380 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 380 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_40StoredPropertiesAndMissingMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.33k | get() const { | 322 | 1.33k | using Map = | 323 | 1.33k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.33k | std::vector<DependencyCollector::Reference>>; | 325 | 1.33k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.33k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30PropertyWrapperTypeInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.01k | get() const { | 322 | 1.01k | using Map = | 323 | 1.01k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.01k | std::vector<DependencyCollector::Reference>>; | 325 | 1.01k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.01k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_14IsActorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 253k | get() const { | 322 | 253k | using Map = | 323 | 253k | llvm::DenseMap<RequestKey<Request>, | 324 | 253k | std::vector<DependencyCollector::Reference>>; | 325 | 253k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 253k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25IsDistributedActorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 69.1k | get() const { | 322 | 69.1k | using Map = | 323 | 69.1k | llvm::DenseMap<RequestKey<Request>, | 324 | 69.1k | std::vector<DependencyCollector::Reference>>; | 325 | 69.1k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 69.1k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21UnderlyingTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 11.9k | get() const { | 322 | 11.9k | using Map = | 323 | 11.9k | llvm::DenseMap<RequestKey<Request>, | 324 | 11.9k | std::vector<DependencyCollector::Reference>>; | 325 | 11.9k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 11.9k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21StructuralTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28DefaultDefinitionTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 48 | get() const { | 322 | 48 | using Map = | 323 | 48 | llvm::DenseMap<RequestKey<Request>, | 324 | 48 | std::vector<DependencyCollector::Reference>>; | 325 | 48 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 48 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18EnumRawTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 12 | get() const { | 322 | 12 | using Map = | 323 | 12 | llvm::DenseMap<RequestKey<Request>, | 324 | 12 | std::vector<DependencyCollector::Reference>>; | 325 | 12 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 12 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24HasMemberwiseInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 640 | get() const { | 322 | 640 | using Map = | 323 | 640 | llvm::DenseMap<RequestKey<Request>, | 324 | 640 | std::vector<DependencyCollector::Reference>>; | 325 | 640 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 640 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31SynthesizeMemberwiseInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 448 | get() const { | 322 | 448 | using Map = | 323 | 448 | llvm::DenseMap<RequestKey<Request>, | 324 | 448 | std::vector<DependencyCollector::Reference>>; | 325 | 448 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 448 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37ResolveEffectiveMemberwiseInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.54k | get() const { | 322 | 1.54k | using Map = | 323 | 1.54k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.54k | std::vector<DependencyCollector::Reference>>; | 325 | 1.54k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.54k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21HasDefaultInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 365 | get() const { | 322 | 365 | using Map = | 323 | 365 | llvm::DenseMap<RequestKey<Request>, | 324 | 365 | std::vector<DependencyCollector::Reference>>; | 325 | 365 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 365 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28SynthesizeDefaultInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 20 | get() const { | 322 | 20 | using Map = | 323 | 20 | llvm::DenseMap<RequestKey<Request>, | 324 | 20 | std::vector<DependencyCollector::Reference>>; | 325 | 20 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 20 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26GlobalActorInstanceRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 30 | get() const { | 322 | 30 | using Map = | 323 | 30 | llvm::DenseMap<RequestKey<Request>, | 324 | 30 | std::vector<DependencyCollector::Reference>>; | 325 | 30 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 30 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20GetDestructorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2.07k | get() const { | 322 | 2.07k | using Map = | 323 | 2.07k | llvm::DenseMap<RequestKey<Request>, | 324 | 2.07k | std::vector<DependencyCollector::Reference>>; | 325 | 2.07k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2.07k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21IsDefaultActorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.59k | get() const { | 322 | 1.59k | using Map = | 323 | 1.59k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.59k | std::vector<DependencyCollector::Reference>>; | 325 | 1.59k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.59k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_39HasMissingDesignatedInitializersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2 | get() const { | 322 | 2 | using Map = | 323 | 2 | llvm::DenseMap<RequestKey<Request>, | 324 | 2 | std::vector<DependencyCollector::Reference>>; | 325 | 2 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37InheritsSuperclassInitializersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 46 | get() const { | 322 | 46 | using Map = | 323 | 46 | llvm::DenseMap<RequestKey<Request>, | 324 | 46 | std::vector<DependencyCollector::Reference>>; | 325 | 46 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 46 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25ClassAncestryFlagsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2.62k | get() const { | 322 | 2.62k | using Map = | 323 | 2.62k | llvm::DenseMap<RequestKey<Request>, | 324 | 2.62k | std::vector<DependencyCollector::Reference>>; | 325 | 2.62k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2.62k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26HasCircularRawValueRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25InheritedProtocolsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 376k | get() const { | 322 | 376k | using Map = | 323 | 376k | llvm::DenseMap<RequestKey<Request>, | 324 | 376k | std::vector<DependencyCollector::Reference>>; | 325 | 376k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 376k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27ProtocolRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 4.17k | get() const { | 322 | 4.17k | using Map = | 323 | 4.17k | llvm::DenseMap<RequestKey<Request>, | 324 | 4.17k | std::vector<DependencyCollector::Reference>>; | 325 | 4.17k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 4.17k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21SuperclassTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2.41k | get() const { | 322 | 2.41k | using Map = | 323 | 2.41k | llvm::DenseMap<RequestKey<Request>, | 324 | 2.41k | std::vector<DependencyCollector::Reference>>; | 325 | 2.41k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2.41k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21SuperclassDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ProtocolRequiresClassRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2.86k | get() const { | 322 | 2.86k | using Map = | 323 | 2.86k | llvm::DenseMap<RequestKey<Request>, | 324 | 2.86k | std::vector<DependencyCollector::Reference>>; | 325 | 2.86k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2.86k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32ExistentialConformsToSelfRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 112 | get() const { | 322 | 112 | using Map = | 323 | 112 | llvm::DenseMap<RequestKey<Request>, | 324 | 112 | std::vector<DependencyCollector::Reference>>; | 325 | 112 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 112 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_42HasSelfOrAssociatedTypeRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1 | get() const { | 322 | 1 | using Map = | 323 | 1 | llvm::DenseMap<RequestKey<Request>, | 324 | 1 | std::vector<DependencyCollector::Reference>>; | 325 | 1 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29PrimaryAssociatedTypesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29StructuralRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 95 | get() const { | 322 | 95 | using Map = | 323 | 95 | llvm::DenseMap<RequestKey<Request>, | 324 | 95 | std::vector<DependencyCollector::Reference>>; | 325 | 95 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 95 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28TypeAliasRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 24 | get() const { | 322 | 24 | using Map = | 323 | 24 | llvm::DenseMap<RequestKey<Request>, | 324 | 24 | std::vector<DependencyCollector::Reference>>; | 325 | 24 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 24 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27ProtocolDependenciesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 54.4k | get() const { | 322 | 54.4k | using Map = | 323 | 54.4k | llvm::DenseMap<RequestKey<Request>, | 324 | 54.4k | std::vector<DependencyCollector::Reference>>; | 325 | 54.4k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 54.4k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27RequirementSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 123k | get() const { | 322 | 123k | using Map = | 323 | 123k | llvm::DenseMap<RequestKey<Request>, | 324 | 123k | std::vector<DependencyCollector::Reference>>; | 325 | 123k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 123k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36HasCircularInheritedProtocolsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 38 | get() const { | 322 | 38 | using Map = | 323 | 38 | llvm::DenseMap<RequestKey<Request>, | 324 | 38 | std::vector<DependencyCollector::Reference>>; | 325 | 38 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 38 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17HasStorageRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 71.3k | get() const { | 322 | 71.3k | using Map = | 323 | 71.3k | llvm::DenseMap<RequestKey<Request>, | 324 | 71.3k | std::vector<DependencyCollector::Reference>>; | 325 | 71.3k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 71.3k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22StorageImplInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 95.4k | get() const { | 322 | 95.4k | using Map = | 323 | 95.4k | llvm::DenseMap<RequestKey<Request>, | 324 | 95.4k | std::vector<DependencyCollector::Reference>>; | 325 | 95.4k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 95.4k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24SetterAccessLevelRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 7.93k | get() const { | 322 | 7.93k | using Map = | 323 | 7.93k | llvm::DenseMap<RequestKey<Request>, | 324 | 7.93k | std::vector<DependencyCollector::Reference>>; | 325 | 7.93k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 7.93k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22HasInitAccessorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 22.9k | get() const { | 322 | 22.9k | using Map = | 323 | 22.9k | llvm::DenseMap<RequestKey<Request>, | 324 | 22.9k | std::vector<DependencyCollector::Reference>>; | 325 | 22.9k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 22.9k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27DefaultInitializerIsolationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 11.7k | get() const { | 322 | 11.7k | using Map = | 323 | 11.7k | llvm::DenseMap<RequestKey<Request>, | 324 | 11.7k | std::vector<DependencyCollector::Reference>>; | 325 | 11.7k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 11.7k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20NamingPatternRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2.48k | get() const { | 322 | 2.48k | using Map = | 323 | 2.48k | llvm::DenseMap<RequestKey<Request>, | 324 | 2.48k | std::vector<DependencyCollector::Reference>>; | 325 | 2.48k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2.48k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ParamSpecifierRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.11M | get() const { | 322 | 1.11M | using Map = | 323 | 1.11M | llvm::DenseMap<RequestKey<Request>, | 324 | 1.11M | std::vector<DependencyCollector::Reference>>; | 325 | 1.11M | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.11M | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31AttachedPropertyWrappersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.07M | get() const { | 322 | 1.07M | using Map = | 323 | 1.07M | llvm::DenseMap<RequestKey<Request>, | 324 | 1.07M | std::vector<DependencyCollector::Reference>>; | 325 | 1.07M | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.07M | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34AttachedPropertyWrapperTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 125 | get() const { | 322 | 125 | using Map = | 323 | 125 | llvm::DenseMap<RequestKey<Request>, | 324 | 125 | std::vector<DependencyCollector::Reference>>; | 325 | 125 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 125 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_41PropertyWrapperBackingPropertyTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 180 | get() const { | 322 | 180 | using Map = | 323 | 180 | llvm::DenseMap<RequestKey<Request>, | 324 | 180 | std::vector<DependencyCollector::Reference>>; | 325 | 180 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 180 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_40PropertyWrapperAuxiliaryVariablesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 3.85k | get() const { | 322 | 3.85k | using Map = | 323 | 3.85k | llvm::DenseMap<RequestKey<Request>, | 324 | 3.85k | std::vector<DependencyCollector::Reference>>; | 325 | 3.85k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 3.85k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37PropertyWrapperInitializerInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 946 | get() const { | 322 | 946 | using Map = | 323 | 946 | llvm::DenseMap<RequestKey<Request>, | 324 | 946 | std::vector<DependencyCollector::Reference>>; | 325 | 946 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 946 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32PropertyWrapperMutabilityRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 3.06k | get() const { | 322 | 3.06k | using Map = | 323 | 3.06k | llvm::DenseMap<RequestKey<Request>, | 324 | 3.06k | std::vector<DependencyCollector::Reference>>; | 325 | 3.06k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 3.06k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26LazyStoragePropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_33DefaultArgumentInitContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 134 | get() const { | 322 | 134 | using Map = | 323 | 134 | llvm::DenseMap<RequestKey<Request>, | 324 | 134 | std::vector<DependencyCollector::Reference>>; | 325 | 134 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 134 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26DefaultArgumentExprRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 146 | get() const { | 322 | 146 | using Map = | 323 | 146 | llvm::DenseMap<RequestKey<Request>, | 324 | 146 | std::vector<DependencyCollector::Reference>>; | 325 | 146 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 146 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26DefaultArgumentTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.11k | get() const { | 322 | 1.11k | using Map = | 323 | 1.11k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.11k | std::vector<DependencyCollector::Reference>>; | 325 | 1.11k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.11k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ResultBuilderTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 7.37k | get() const { | 322 | 7.37k | using Map = | 323 | 7.37k | llvm::DenseMap<RequestKey<Request>, | 324 | 7.37k | std::vector<DependencyCollector::Reference>>; | 325 | 7.37k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 7.37k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28AttachedResultBuilderRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.75k | get() const { | 322 | 1.75k | using Map = | 323 | 1.75k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.75k | std::vector<DependencyCollector::Reference>>; | 325 | 1.75k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.75k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17ResultTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 386k | get() const { | 322 | 386k | using Map = | 323 | 386k | llvm::DenseMap<RequestKey<Request>, | 324 | 386k | std::vector<DependencyCollector::Reference>>; | 325 | 386k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 386k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18RenamedDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32ParseAbstractFunctionBodyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 998k | get() const { | 322 | 998k | using Map = | 323 | 998k | llvm::DenseMap<RequestKey<Request>, | 324 | 998k | std::vector<DependencyCollector::Reference>>; | 325 | 998k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 998k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28TypeCheckFunctionBodyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 13.5k | get() const { | 322 | 13.5k | using Map = | 323 | 13.5k | llvm::DenseMap<RequestKey<Request>, | 324 | 13.5k | std::vector<DependencyCollector::Reference>>; | 325 | 13.5k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 13.5k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28IsFunctionBodySkippedRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 36.6k | get() const { | 322 | 36.6k | using Map = | 323 | 36.6k | llvm::DenseMap<RequestKey<Request>, | 324 | 36.6k | std::vector<DependencyCollector::Reference>>; | 325 | 36.6k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 36.6k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26NeedsNewVTableEntryRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 9.26k | get() const { | 322 | 9.26k | using Map = | 323 | 9.26k | llvm::DenseMap<RequestKey<Request>, | 324 | 9.26k | std::vector<DependencyCollector::Reference>>; | 325 | 9.26k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 9.26k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23FunctionOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 647 | get() const { | 322 | 647 | using Map = | 323 | 647 | llvm::DenseMap<RequestKey<Request>, | 324 | 647 | std::vector<DependencyCollector::Reference>>; | 325 | 647 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 647 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_15IsStaticRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 836k | get() const { | 322 | 836k | using Map = | 323 | 836k | llvm::DenseMap<RequestKey<Request>, | 324 | 836k | std::vector<DependencyCollector::Reference>>; | 325 | 836k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 836k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19SimpleDidSetRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21SelfAccessKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 82.2k | get() const { | 322 | 82.2k | using Map = | 323 | 82.2k | llvm::DenseMap<RequestKey<Request>, | 324 | 82.2k | std::vector<DependencyCollector::Reference>>; | 325 | 82.2k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 82.2k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20EnumRawValuesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2 | get() const { | 322 | 2 | using Map = | 323 | 2 | llvm::DenseMap<RequestKey<Request>, | 324 | 2 | std::vector<DependencyCollector::Reference>>; | 325 | 2 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_15InitKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 7.62k | get() const { | 322 | 7.62k | using Map = | 323 | 7.62k | llvm::DenseMap<RequestKey<Request>, | 324 | 7.62k | std::vector<DependencyCollector::Reference>>; | 325 | 7.62k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 7.62k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19BodyInitKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 6.49k | get() const { | 322 | 6.49k | using Map = | 323 | 6.49k | llvm::DenseMap<RequestKey<Request>, | 324 | 6.49k | std::vector<DependencyCollector::Reference>>; | 325 | 6.49k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 6.49k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30OperatorPrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.99k | get() const { | 322 | 1.99k | using Map = | 323 | 1.99k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.99k | std::vector<DependencyCollector::Reference>>; | 325 | 1.99k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.99k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ActorIsolationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 483k | get() const { | 322 | 483k | using Map = | 323 | 483k | llvm::DenseMap<RequestKey<Request>, | 324 | 483k | std::vector<DependencyCollector::Reference>>; | 325 | 483k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 483k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31ExpandMacroExpansionExprRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ResolveMacroConformancesEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22MacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ResolveImplicitMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv DeclContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26FragileFunctionKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 29.9k | get() const { | 322 | 29.9k | using Map = | 323 | 29.9k | llvm::DenseMap<RequestKey<Request>, | 324 | 29.9k | std::vector<DependencyCollector::Reference>>; | 325 | 29.9k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 29.9k | } |
DeclContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19ParseMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 16.2k | get() const { | 322 | 16.2k | using Map = | 323 | 16.2k | llvm::DenseMap<RequestKey<Request>, | 324 | 16.2k | std::vector<DependencyCollector::Reference>>; | 325 | 16.2k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 16.2k | } |
DeclContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17ABIMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.45k | get() const { | 322 | 1.45k | using Map = | 323 | 1.45k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.45k | std::vector<DependencyCollector::Reference>>; | 325 | 1.45k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.45k | } |
DeclContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17AllMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 324 | get() const { | 322 | 324 | using Map = | 323 | 324 | llvm::DenseMap<RequestKey<Request>, | 324 | 324 | std::vector<DependencyCollector::Reference>>; | 325 | 324 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 324 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_48GetDistributedActorArgumentDecodingMethodRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_43GetDistributedActorInvocationDecoderRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26GetDistributedThunkRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_40GetDistributedActorSystemPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36GetDistributedActorIDPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DocComment.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27SemanticBriefCommentRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Effects.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36PolymorphicEffectRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Effects.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28PolymorphicEffectKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 32.0k | get() const { | 322 | 32.0k | using Map = | 323 | 32.0k | llvm::DenseMap<RequestKey<Request>, | 324 | 32.0k | std::vector<DependencyCollector::Reference>>; | 325 | 32.0k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 32.0k | } |
Unexecuted instantiation: Effects.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27ConformanceHasEffectRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Expr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31CallerSideDefaultArgExprRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2.48k | get() const { | 322 | 2.48k | using Map = | 323 | 2.48k | llvm::DenseMap<RequestKey<Request>, | 324 | 2.48k | std::vector<DependencyCollector::Reference>>; | 325 | 2.48k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2.48k | } |
Unexecuted instantiation: Expr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Expr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ClosureEffectsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 723k | get() const { | 322 | 723k | using Map = | 323 | 723k | llvm::DenseMap<RequestKey<Request>, | 324 | 723k | std::vector<DependencyCollector::Reference>>; | 325 | 723k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 723k | } |
GenericSignature.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31AbstractGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 10.7k | get() const { | 322 | 10.7k | using Map = | 323 | 10.7k | llvm::DenseMap<RequestKey<Request>, | 324 | 10.7k | std::vector<DependencyCollector::Reference>>; | 325 | 10.7k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 10.7k | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22IsNonUserModuleRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ModuleImplicitImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25PrimarySourceFilesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26MangleLocalTypeDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ExpandExtensionMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 263k | get() const { | 322 | 263k | using Map = | 323 | 263k | llvm::DenseMap<RequestKey<Request>, | 324 | 263k | std::vector<DependencyCollector::Reference>>; | 325 | 263k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 263k | } |
Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_39ImplicitKnownProtocolConformanceRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.55k | get() const { | 322 | 1.55k | using Map = | 323 | 1.55k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.55k | std::vector<DependencyCollector::Reference>>; | 325 | 1.55k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.55k | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_41GetDistributedActorImplicitCodableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22ParseSourceFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 878 | get() const { | 322 | 878 | using Map = | 323 | 878 | llvm::DenseMap<RequestKey<Request>, | 324 | 878 | std::vector<DependencyCollector::Reference>>; | 325 | 878 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 878 | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29HasImportsMatchingFlagRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_16SPIGroupsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 155k | get() const { | 322 | 155k | using Map = | 323 | 155k | llvm::DenseMap<RequestKey<Request>, | 324 | 155k | std::vector<DependencyCollector::Reference>>; | 325 | 155k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 155k | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25ModuleLibraryLevelRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25ParseTopLevelDeclsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.01k | get() const { | 322 | 1.01k | using Map = | 323 | 1.01k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.01k | std::vector<DependencyCollector::Reference>>; | 325 | 1.01k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.01k | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25ExportedSourceFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22GetSourceFileAsyncNodeEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 8.67k | get() const { | 322 | 8.67k | using Map = | 323 | 8.67k | llvm::DenseMap<RequestKey<Request>, | 324 | 8.67k | std::vector<DependencyCollector::Reference>>; | 325 | 8.67k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 8.67k | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32LookupConformanceInModuleRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ModuleNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21LookupInModuleRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_35ExpandSynthesizedMemberMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.66k | get() const { | 322 | 1.66k | using Map = | 323 | 1.66k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.66k | std::vector<DependencyCollector::Reference>>; | 325 | 1.66k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.66k | } |
Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ExpandExtensionMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_40PotentialMacroExpansionsInContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.63k | get() const { | 322 | 1.63k | using Map = | 323 | 1.63k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.63k | std::vector<DependencyCollector::Reference>>; | 325 | 1.63k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.63k | } |
NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21SuperclassDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 82.5k | get() const { | 322 | 82.5k | using Map = | 323 | 82.5k | llvm::DenseMap<RequestKey<Request>, | 324 | 82.5k | std::vector<DependencyCollector::Reference>>; | 325 | 82.5k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 82.5k | } |
NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30IsCallAsFunctionNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 27 | get() const { | 322 | 27 | using Map = | 323 | 27 | llvm::DenseMap<RequestKey<Request>, | 324 | 27 | std::vector<DependencyCollector::Reference>>; | 325 | 27 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 27 | } |
NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_38HasDynamicMemberLookupAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 7.07k | get() const { | 322 | 7.07k | using Map = | 323 | 7.07k | llvm::DenseMap<RequestKey<Request>, | 324 | 7.07k | std::vector<DependencyCollector::Reference>>; | 325 | 7.07k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 7.07k | } |
Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34HasDynamicCallableAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32SelfBoundsFromWhereClauseRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37SelfBoundsFromGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24UnqualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19DirectLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24CXXNamespaceMemberLookupEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23ClangRecordMemberLookupEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22AnyObjectLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22QualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ModuleQualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36UnderlyingTypeDeclsReferencedRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31InheritedDeclsReferencedRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv OperatorNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26LookupInfixOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2.22k | get() const { | 322 | 2.22k | using Map = | 323 | 2.22k | llvm::DenseMap<RequestKey<Request>, | 324 | 2.22k | std::vector<DependencyCollector::Reference>>; | 325 | 2.22k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2.22k | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27LookupPrefixOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28LookupPostfixOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv OperatorNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28LookupPrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 828 | get() const { | 322 | 828 | using Map = | 323 | 828 | llvm::DenseMap<RequestKey<Request>, | 324 | 828 | std::vector<DependencyCollector::Reference>>; | 325 | 828 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 828 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27DirectOperatorLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34DirectPrecedenceGroupLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Pattern.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23ExprPatternMatchRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv ProtocolConformance.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30ConditionalRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 138k | get() const { | 322 | 138k | using Map = | 323 | 138k | llvm::DenseMap<RequestKey<Request>, | 324 | 138k | std::vector<DependencyCollector::Reference>>; | 325 | 138k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 138k | } |
ProtocolConformance.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18TypeWitnessRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 62 | get() const { | 322 | 62 | using Map = | 323 | 62 | llvm::DenseMap<RequestKey<Request>, | 324 | 62 | std::vector<DependencyCollector::Reference>>; | 325 | 62 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 62 | } |
ProtocolConformance.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28AssociatedConformanceRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 610 | get() const { | 322 | 610 | using Map = | 323 | 610 | llvm::DenseMap<RequestKey<Request>, | 324 | 610 | std::vector<DependencyCollector::Reference>>; | 325 | 610 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 610 | } |
ProtocolConformance.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19ValueWitnessRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 22.4k | get() const { | 322 | 22.4k | using Map = | 323 | 22.4k | llvm::DenseMap<RequestKey<Request>, | 324 | 22.4k | std::vector<DependencyCollector::Reference>>; | 325 | 22.4k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 22.4k | } |
ProtocolConformance.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37LookupAllConformancesInContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 9.02k | get() const { | 322 | 9.02k | using Map = | 323 | 9.02k | llvm::DenseMap<RequestKey<Request>, | 324 | 9.02k | std::vector<DependencyCollector::Reference>>; | 325 | 9.02k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 9.02k | } |
Unexecuted instantiation: RawComment.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17RawCommentRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: RequirementMachineRequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31AbstractGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Stmt.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24IsSingleValueStmtRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 16 | get() const { | 322 | 16 | using Map = | 323 | 16 | llvm::DenseMap<RequestKey<Request>, | 324 | 16 | std::vector<DependencyCollector::Reference>>; | 325 | 16 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 16 | } |
Unexecuted instantiation: Stmt.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18BreakTargetRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Stmt.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ContinueTargetRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 24 | get() const { | 322 | 24 | using Map = | 323 | 24 | llvm::DenseMap<RequestKey<Request>, | 324 | 24 | std::vector<DependencyCollector::Reference>>; | 325 | 24 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 24 | } |
Unexecuted instantiation: Type.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20IsNoncopyableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckRequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18RequirementRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 783 | get() const { | 322 | 783 | using Map = | 323 | 783 | llvm::DenseMap<RequestKey<Request>, | 324 | 783 | std::vector<DependencyCollector::Reference>>; | 325 | 783 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 783 | } |
TypeRefinementContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_40ExpandChildTypeRefinementContextsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 6.54k | get() const { | 322 | 6.54k | using Map = | 323 | 6.54k | llvm::DenseMap<RequestKey<Request>, | 324 | 6.54k | std::vector<DependencyCollector::Reference>>; | 325 | 6.54k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 6.54k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20USRGenerationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv |
328 | | |
329 | 26.7M | bool isNull() const { return !Storage; } |
330 | 47.7k | ~PerRequestReferences() { |
331 | 47.7k | if (Storage) |
332 | 5.99k | Deleter(Storage); |
333 | 47.7k | } |
334 | | }; |
335 | | |
336 | | /// Data structure for caching dependencies from requests. Sharded by the |
337 | | /// type ID zone and request kind, with a PerRequestReferences for each |
338 | | /// request kind. |
339 | | /// |
340 | | /// Conceptually equivalent to DenseMap<AnyRequest, vector<Reference>>, but |
341 | | /// without type erasure overhead for keys. |
342 | | class RequestReferences { |
343 | | |
344 | | #define SWIFT_TYPEID_ZONE(Name, Id) \ |
345 | | std::vector<PerRequestReferences> Name##ZoneRefs; \ |
346 | | \ |
347 | | template < \ |
348 | | typename Request, typename ZoneTypes = TypeIDZoneTypes<Zone::Name>, \ |
349 | | typename std::enable_if<TypeID<Request>::zone == Zone::Name>::type * = \ |
350 | | nullptr> \ |
351 | | llvm::DenseMap<RequestKey<Request>, \ |
352 | | std::vector<DependencyCollector::Reference>> * \ |
353 | 26.7M | getRefs() { \ |
354 | 26.7M | auto &refs = Name##ZoneRefs; \ |
355 | 26.7M | if (refs.empty()) { \ |
356 | 551 | refs.resize(ZoneTypes::Count); \ |
357 | 551 | } \ |
358 | 26.7M | auto idx = TypeID<Request>::localID; \ |
359 | 26.7M | if (refs[idx].isNull()) { \ |
360 | 5.99k | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ |
361 | 5.99k | } \ |
362 | 26.7M | return refs[idx].template get<Request>(); \ |
363 | 26.7M | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18OptimizedIRRequestENS_15TypeIDZoneTypesILNS_4ZoneE20EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22SymbolSourceMapRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv ClangSyntaxPrinter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20USRGenerationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 8 | getRefs() { \ | 354 | 8 | auto &refs = Name##ZoneRefs; \ | 355 | 8 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 8 | auto idx = TypeID<Request>::localID; \ | 359 | 8 | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 8 | return refs[idx].template get<Request>(); \ | 363 | 8 | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18RenamedDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24IDEInspectionFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ConstantValueInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE140EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22SymbolSourceMapRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv IRGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_12IRGenRequestENS_15TypeIDZoneTypesILNS_4ZoneE20EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 147 | getRefs() { \ | 354 | 147 | auto &refs = Name##ZoneRefs; \ | 355 | 147 | if (refs.empty()) { \ | 356 | 49 | refs.resize(ZoneTypes::Count); \ | 357 | 49 | } \ | 358 | 147 | auto idx = TypeID<Request>::localID; \ | 359 | 147 | if (refs[idx].isNull()) { \ | 360 | 49 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 49 | } \ | 362 | 147 | return refs[idx].template get<Request>(); \ | 363 | 147 | } |
Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17LoweredSILRequestENS_15TypeIDZoneTypesILNS_4ZoneE13EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20PublicSymbolsRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18GenerateTBDRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_13APIGenRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv SILGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18ASTLoweringRequestENS_15TypeIDZoneTypesILNS_4ZoneE12EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 236 | getRefs() { \ | 354 | 236 | auto &refs = Name##ZoneRefs; \ | 355 | 236 | if (refs.empty()) { \ | 356 | 79 | refs.resize(ZoneTypes::Count); \ | 357 | 79 | } \ | 358 | 236 | auto idx = TypeID<Request>::localID; \ | 359 | 236 | if (refs[idx].isNull()) { \ | 360 | 79 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 79 | } \ | 362 | 236 | return refs[idx].template get<Request>(); \ | 363 | 236 | } |
Unexecuted instantiation: SILGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ParseSILModuleRequestENS_15TypeIDZoneTypesILNS_4ZoneE12EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Common.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28TangentStoredPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 88 | getRefs() { \ | 354 | 88 | auto &refs = Name##ZoneRefs; \ | 355 | 88 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 88 | auto idx = TypeID<Request>::localID; \ | 359 | 88 | if (refs[idx].isNull()) { \ | 360 | 15 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 15 | } \ | 362 | 88 | return refs[idx].template get<Request>(); \ | 363 | 88 | } |
Unexecuted instantiation: PassManager.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25ExecuteSILPipelineRequestENS_15TypeIDZoneTypesILNS_4ZoneE13EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18ASTLoweringRequestENS_15TypeIDZoneTypesILNS_4ZoneE12EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ProvideDefaultImplForRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_46RootAndResultTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26ResolveProtocolNameRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ProvideDefaultImplForRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29CollectOverriddenDeclsRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23IsDeclApplicableRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24TypeRelationCheckRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37RootTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27DirectOperatorLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34DirectPrecedenceGroupLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26MangleLocalTypeDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ParseSIL.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24UnqualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28PreCheckResultBuilderRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31ExpandMacroExpansionExprRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv CSRanking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32CompareDeclSpecializationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 4.46k | getRefs() { \ | 354 | 4.46k | auto &refs = Name##ZoneRefs; \ | 355 | 4.46k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 4.46k | auto idx = TypeID<Request>::localID; \ | 359 | 4.46k | if (refs[idx].isNull()) { \ | 360 | 39 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 39 | } \ | 362 | 4.46k | return refs[idx].template get<Request>(); \ | 363 | 4.46k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29EnumElementExprPatternRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34HasDynamicCallableAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24UnqualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv CSStep.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25IsDeclRefinementOfRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 5.67k | getRefs() { \ | 354 | 5.67k | auto &refs = Name##ZoneRefs; \ | 355 | 5.67k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 5.67k | auto idx = TypeID<Request>::localID; \ | 359 | 5.67k | if (refs[idx].isNull()) { \ | 360 | 25 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 25 | } \ | 362 | 5.67k | return refs[idx].template get<Request>(); \ | 363 | 5.67k | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18CxxRecordSemanticsENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv CodeSynthesis.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_35HasUserDefinedDesignatedInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 977 | getRefs() { \ | 354 | 977 | auto &refs = Name##ZoneRefs; \ | 355 | 977 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 977 | auto idx = TypeID<Request>::localID; \ | 359 | 977 | if (refs[idx].isNull()) { \ | 360 | 38 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 38 | } \ | 362 | 977 | return refs[idx].template get<Request>(); \ | 363 | 977 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_44AreAllStoredPropertiesDefaultInitableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 46 | getRefs() { \ | 354 | 46 | auto &refs = Name##ZoneRefs; \ | 355 | 46 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 46 | auto idx = TypeID<Request>::localID; \ | 359 | 46 | if (refs[idx].isNull()) { \ | 360 | 5 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 5 | } \ | 362 | 46 | return refs[idx].template get<Request>(); \ | 363 | 46 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ClosureEffectsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv ConstraintSystem.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31ClosureHasExplicitResultRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 28 | getRefs() { \ | 354 | 28 | auto &refs = Name##ZoneRefs; \ | 355 | 28 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 28 | auto idx = TypeID<Request>::localID; \ | 359 | 28 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 28 | return refs[idx].template get<Request>(); \ | 363 | 28 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23IsDeclApplicableRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_46RootAndResultTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37RootTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: MiscDiagnostics.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24UnqualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25PreCheckReturnStmtRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29SynthesizeMainFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21CustomAttrTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28IsCCompatibleFuncDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ResolveMacroConformancesENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31InferredGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27GlobalActorAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24UnqualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27GlobalActorAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21CustomAttrTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22HasIsolatedSelfRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_35DistributedModuleIsAvailableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31CheckDistributedFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30ValidatePrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 432 | getRefs() { \ | 354 | 432 | auto &refs = Name##ZoneRefs; \ | 355 | 432 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 432 | auto idx = TypeID<Request>::localID; \ | 359 | 432 | if (refs[idx].isNull()) { \ | 360 | 30 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 30 | } \ | 362 | 432 | return refs[idx].template get<Request>(); \ | 363 | 432 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_35ExpandSynthesizedMemberMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29SynthesizeMainFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 266 | getRefs() { \ | 354 | 266 | auto &refs = Name##ZoneRefs; \ | 355 | 266 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 266 | auto idx = TypeID<Request>::localID; \ | 359 | 266 | if (refs[idx].isNull()) { \ | 360 | 29 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 29 | } \ | 362 | 266 | return refs[idx].template get<Request>(); \ | 363 | 266 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36HasCircularInheritedProtocolsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26HasCircularRawValueRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22OverriddenDeclsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30IsABICompatibleOverrideRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ResolveImplicitMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34TypeCheckObjCImplementationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20InheritedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30ExternalMacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25CheckRedeclarationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 12.3k | getRefs() { \ | 354 | 12.3k | auto &refs = Name##ZoneRefs; \ | 355 | 12.3k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 12.3k | auto idx = TypeID<Request>::localID; \ | 359 | 12.3k | if (refs[idx].isNull()) { \ | 360 | 63 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 63 | } \ | 362 | 12.3k | return refs[idx].template get<Request>(); \ | 363 | 12.3k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ExpandExtensionMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22ApplyAccessNoteRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 21.5k | getRefs() { \ | 354 | 21.5k | auto &refs = Name##ZoneRefs; \ | 355 | 21.5k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 21.5k | auto idx = TypeID<Request>::localID; \ | 359 | 21.5k | if (refs[idx].isNull()) { \ | 360 | 63 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 63 | } \ | 362 | 21.5k | return refs[idx].template get<Request>(); \ | 363 | 21.5k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19ResolveMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ResolveImplicitMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27DirectOperatorLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34DirectPrecedenceGroupLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckExpr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18DefaultTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 326k | getRefs() { \ | 354 | 326k | auto &refs = Name##ZoneRefs; \ | 355 | 326k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 326k | auto idx = TypeID<Request>::localID; \ | 359 | 326k | if (refs[idx].isNull()) { \ | 360 | 48 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 48 | } \ | 362 | 326k | return refs[idx].template get<Request>(); \ | 363 | 326k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31InferredGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31HasNoncopyableAnnotationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30ExternalMacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25CompilerPluginLoadRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31ExpandMacroExpansionDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24UnqualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckPattern.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18PatternTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2.16k | getRefs() { \ | 354 | 2.16k | auto &refs = Name##ZoneRefs; \ | 355 | 2.16k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2.16k | auto idx = TypeID<Request>::localID; \ | 359 | 2.16k | if (refs[idx].isNull()) { \ | 360 | 39 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 39 | } \ | 362 | 2.16k | return refs[idx].template get<Request>(); \ | 363 | 2.16k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31AttachedPropertyWrappersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21CustomAttrTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_40PotentialMacroExpansionsInContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20InheritedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 974 | getRefs() { \ | 354 | 974 | auto &refs = Name##ZoneRefs; \ | 355 | 974 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 974 | auto idx = TypeID<Request>::localID; \ | 359 | 974 | if (refs[idx].isNull()) { \ | 360 | 47 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 47 | } \ | 362 | 974 | return refs[idx].template get<Request>(); \ | 363 | 974 | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.02k | getRefs() { \ | 354 | 1.02k | auto &refs = Name##ZoneRefs; \ | 355 | 1.02k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.02k | auto idx = TypeID<Request>::localID; \ | 359 | 1.02k | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 1.02k | return refs[idx].template get<Request>(); \ | 363 | 1.02k | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21CustomAttrTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 25 | getRefs() { \ | 354 | 25 | auto &refs = Name##ZoneRefs; \ | 355 | 25 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 25 | auto idx = TypeID<Request>::localID; \ | 359 | 25 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 25 | return refs[idx].template get<Request>(); \ | 363 | 25 | } |
TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25PreCheckReturnStmtRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 18 | getRefs() { \ | 354 | 18 | auto &refs = Name##ZoneRefs; \ | 355 | 18 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 18 | auto idx = TypeID<Request>::localID; \ | 359 | 18 | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 18 | return refs[idx].template get<Request>(); \ | 363 | 18 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27PreCheckFunctionBodyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_35ExpandSynthesizedMemberMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22ExpandPeerMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32PropertyWrapperLValuenessRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 84 | getRefs() { \ | 354 | 84 | auto &refs = Name##ZoneRefs; \ | 355 | 84 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 84 | auto idx = TypeID<Request>::localID; \ | 359 | 84 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 84 | return refs[idx].template get<Request>(); \ | 363 | 84 | } |
TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20ExpandAccessorMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 20 | getRefs() { \ | 354 | 20 | auto &refs = Name##ZoneRefs; \ | 355 | 20 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 20 | auto idx = TypeID<Request>::localID; \ | 359 | 20 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 20 | return refs[idx].template get<Request>(); \ | 363 | 20 | } |
Unexecuted instantiation: TypeCheckType.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18ResolveTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26TypeCheckSourceFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 437 | getRefs() { \ | 354 | 437 | auto &refs = Name##ZoneRefs; \ | 355 | 437 | if (refs.empty()) { \ | 356 | 1 | refs.resize(ZoneTypes::Count); \ | 357 | 1 | } \ | 358 | 437 | auto idx = TypeID<Request>::localID; \ | 359 | 437 | if (refs[idx].isNull()) { \ | 360 | 85 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 85 | } \ | 362 | 437 | return refs[idx].template get<Request>(); \ | 363 | 437 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_49CheckInconsistentImplementationOnlyImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_38CheckInconsistentSPIOnlyImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36CheckInconsistentAccessLevelOnImportENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_41CheckInconsistentWeakLinkedImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31InferredGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 360 | getRefs() { \ | 354 | 360 | auto &refs = Name##ZoneRefs; \ | 355 | 360 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 360 | auto idx = TypeID<Request>::localID; \ | 359 | 360 | if (refs[idx].isNull()) { \ | 360 | 45 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 45 | } \ | 362 | 360 | return refs[idx].template get<Request>(); \ | 363 | 360 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28TypeCheckASTNodeAtLocRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_46RootAndResultTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23ClangRecordMemberLookupENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37ObjCInterfaceAndImplementationRequestENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ClangDirectLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23ClangRecordMemberLookupENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26ClangCategoryLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18CxxRecordSemanticsENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ImportName.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18IsSafeUseOfCxxDeclENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ImportType.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20CxxRecordAsSwiftTypeENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30IDEInspectionSecondPassRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22ParseSourceFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: AccessRequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31TypeDeclsFromWhereClauseRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22HasIsolatedSelfRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTPrinter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ClangDirectLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ResolveMacroConformancesENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30TypeEraserHasViableInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ResolveTypeEraserTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31ResolveRawLayoutLikeTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31SpecializeAttrTargetDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36SerializeAttrGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_39DifferentiableAttributeTypeCheckRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 5.46k | getRefs() { \ | 354 | 5.46k | auto &refs = Name##ZoneRefs; \ | 355 | 5.46k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 5.46k | auto idx = TypeID<Request>::localID; \ | 359 | 5.46k | if (refs[idx].isNull()) { \ | 360 | 46 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 46 | } \ | 362 | 5.46k | return refs[idx].template get<Request>(); \ | 363 | 5.46k | } |
Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_33DerivativeAttrOriginalDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 140 | getRefs() { \ | 354 | 140 | auto &refs = Name##ZoneRefs; \ | 355 | 140 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 140 | auto idx = TypeID<Request>::localID; \ | 359 | 140 | if (refs[idx].isNull()) { \ | 360 | 18 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 18 | } \ | 362 | 140 | return refs[idx].template get<Request>(); \ | 363 | 140 | } |
Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29ImplementsAttrProtocolRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 163 | getRefs() { \ | 354 | 163 | auto &refs = Name##ZoneRefs; \ | 355 | 163 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 163 | auto idx = TypeID<Request>::localID; \ | 359 | 163 | if (refs[idx].isNull()) { \ | 360 | 18 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 18 | } \ | 362 | 163 | return refs[idx].template get<Request>(); \ | 363 | 163 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_38InitAccessorReferencedVariablesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_33SemanticAvailableRangeAttrRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Availability.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30SemanticUnavailableAttrRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 38.0k | getRefs() { \ | 354 | 38.0k | auto &refs = Name##ZoneRefs; \ | 355 | 38.0k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 38.0k | auto idx = TypeID<Request>::localID; \ | 359 | 38.0k | if (refs[idx].isNull()) { \ | 360 | 52 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 52 | } \ | 362 | 38.0k | return refs[idx].template get<Request>(); \ | 363 | 38.0k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27ExpandMemberAttributeMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 119k | getRefs() { \ | 354 | 119k | auto &refs = Name##ZoneRefs; \ | 355 | 119k | if (refs.empty()) { \ | 356 | 56 | refs.resize(ZoneTypes::Count); \ | 357 | 56 | } \ | 358 | 119k | auto idx = TypeID<Request>::localID; \ | 359 | 119k | if (refs[idx].isNull()) { \ | 360 | 85 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 85 | } \ | 362 | 119k | return refs[idx].template get<Request>(); \ | 363 | 119k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22ExpandPeerMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 33.0k | getRefs() { \ | 354 | 33.0k | auto &refs = Name##ZoneRefs; \ | 355 | 33.0k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 33.0k | auto idx = TypeID<Request>::localID; \ | 359 | 33.0k | if (refs[idx].isNull()) { \ | 360 | 63 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 63 | } \ | 362 | 33.0k | return refs[idx].template get<Request>(); \ | 363 | 33.0k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31ExpandMacroExpansionDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19ResolveMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 75 | getRefs() { \ | 354 | 75 | auto &refs = Name##ZoneRefs; \ | 355 | 75 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 75 | auto idx = TypeID<Request>::localID; \ | 359 | 75 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 75 | return refs[idx].template get<Request>(); \ | 363 | 75 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21CustomAttrTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27GlobalActorAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.09M | getRefs() { \ | 354 | 1.09M | auto &refs = Name##ZoneRefs; \ | 355 | 1.09M | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.09M | auto idx = TypeID<Request>::localID; \ | 359 | 1.09M | if (refs[idx].isNull()) { \ | 360 | 63 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 63 | } \ | 362 | 1.09M | return refs[idx].template get<Request>(); \ | 363 | 1.09M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17ThrownTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28IsAccessorTransparentRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 513 | getRefs() { \ | 354 | 513 | auto &refs = Name##ZoneRefs; \ | 355 | 513 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 513 | auto idx = TypeID<Request>::localID; \ | 359 | 513 | if (refs[idx].isNull()) { \ | 360 | 29 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 29 | } \ | 362 | 513 | return refs[idx].template get<Request>(); \ | 363 | 513 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23GenericParamListRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.41M | getRefs() { \ | 354 | 1.41M | auto &refs = Name##ZoneRefs; \ | 355 | 1.41M | if (refs.empty()) { \ | 356 | 63 | refs.resize(ZoneTypes::Count); \ | 357 | 63 | } \ | 358 | 1.41M | auto idx = TypeID<Request>::localID; \ | 359 | 1.41M | if (refs[idx].isNull()) { \ | 360 | 85 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 85 | } \ | 362 | 1.41M | return refs[idx].template get<Request>(); \ | 363 | 1.41M | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23GenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.58M | getRefs() { \ | 354 | 1.58M | auto &refs = Name##ZoneRefs; \ | 355 | 1.58M | if (refs.empty()) { \ | 356 | 1 | refs.resize(ZoneTypes::Count); \ | 357 | 1 | } \ | 358 | 1.58M | auto idx = TypeID<Request>::localID; \ | 359 | 1.58M | if (refs[idx].isNull()) { \ | 360 | 85 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 85 | } \ | 362 | 1.58M | return refs[idx].template get<Request>(); \ | 363 | 1.58M | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25ScopedImportLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20InheritedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22ExtendedNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 273 | getRefs() { \ | 354 | 273 | auto &refs = Name##ZoneRefs; \ | 355 | 273 | if (refs.empty()) { \ | 356 | 22 | refs.resize(ZoneTypes::Count); \ | 357 | 22 | } \ | 358 | 273 | auto idx = TypeID<Request>::localID; \ | 359 | 273 | if (refs[idx].isNull()) { \ | 360 | 24 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 24 | } \ | 362 | 273 | return refs[idx].template get<Request>(); \ | 363 | 273 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31DefaultAndMaxAccessLevelRequestENS_15TypeIDZoneTypesILNS_4ZoneE11EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 180 | getRefs() { \ | 354 | 180 | auto &refs = Name##ZoneRefs; \ | 355 | 180 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 180 | auto idx = TypeID<Request>::localID; \ | 359 | 180 | if (refs[idx].isNull()) { \ | 360 | 14 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 14 | } \ | 362 | 180 | return refs[idx].template get<Request>(); \ | 363 | 180 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 728 | getRefs() { \ | 354 | 728 | auto &refs = Name##ZoneRefs; \ | 355 | 728 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 728 | auto idx = TypeID<Request>::localID; \ | 359 | 728 | if (refs[idx].isNull()) { \ | 360 | 23 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 23 | } \ | 362 | 728 | return refs[idx].template get<Request>(); \ | 363 | 728 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26PatternBindingEntryRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 662 | getRefs() { \ | 354 | 662 | auto &refs = Name##ZoneRefs; \ | 355 | 662 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 662 | auto idx = TypeID<Request>::localID; \ | 359 | 662 | if (refs[idx].isNull()) { \ | 360 | 50 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 50 | } \ | 362 | 662 | return refs[idx].template get<Request>(); \ | 363 | 662 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30RequiresOpaqueAccessorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 12.0k | getRefs() { \ | 354 | 12.0k | auto &refs = Name##ZoneRefs; \ | 355 | 12.0k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 12.0k | auto idx = TypeID<Request>::localID; \ | 359 | 12.0k | if (refs[idx].isNull()) { \ | 360 | 51 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 51 | } \ | 362 | 12.0k | return refs[idx].template get<Request>(); \ | 363 | 12.0k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36RequiresOpaqueModifyCoroutineRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 3.11k | getRefs() { \ | 354 | 3.11k | auto &refs = Name##ZoneRefs; \ | 355 | 3.11k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 3.11k | auto idx = TypeID<Request>::localID; \ | 359 | 3.11k | if (refs[idx].isNull()) { \ | 360 | 32 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 32 | } \ | 362 | 3.11k | return refs[idx].template get<Request>(); \ | 363 | 3.11k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25SynthesizeAccessorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 449 | getRefs() { \ | 354 | 449 | auto &refs = Name##ZoneRefs; \ | 355 | 449 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 449 | auto idx = TypeID<Request>::localID; \ | 359 | 449 | if (refs[idx].isNull()) { \ | 360 | 24 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 24 | } \ | 362 | 449 | return refs[idx].template get<Request>(); \ | 363 | 449 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30IsABICompatibleOverrideRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 55 | getRefs() { \ | 354 | 55 | auto &refs = Name##ZoneRefs; \ | 355 | 55 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 55 | auto idx = TypeID<Request>::localID; \ | 359 | 55 | if (refs[idx].isNull()) { \ | 360 | 8 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 8 | } \ | 362 | 55 | return refs[idx].template get<Request>(); \ | 363 | 55 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23IsGetterMutatingRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 13.9k | getRefs() { \ | 354 | 13.9k | auto &refs = Name##ZoneRefs; \ | 355 | 13.9k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 13.9k | auto idx = TypeID<Request>::localID; \ | 359 | 13.9k | if (refs[idx].isNull()) { \ | 360 | 42 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 42 | } \ | 362 | 13.9k | return refs[idx].template get<Request>(); \ | 363 | 13.9k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23IsSetterMutatingRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 9.21k | getRefs() { \ | 354 | 9.21k | auto &refs = Name##ZoneRefs; \ | 355 | 9.21k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 9.21k | auto idx = TypeID<Request>::localID; \ | 359 | 9.21k | if (refs[idx].isNull()) { \ | 360 | 34 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 34 | } \ | 362 | 9.21k | return refs[idx].template get<Request>(); \ | 363 | 9.21k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26OpaqueReadOwnershipRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 8.81k | getRefs() { \ | 354 | 8.81k | auto &refs = Name##ZoneRefs; \ | 355 | 8.81k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 8.81k | auto idx = TypeID<Request>::localID; \ | 359 | 8.81k | if (refs[idx].isNull()) { \ | 360 | 42 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 42 | } \ | 362 | 8.81k | return refs[idx].template get<Request>(); \ | 363 | 8.81k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 6 | getRefs() { \ | 354 | 6 | auto &refs = Name##ZoneRefs; \ | 355 | 6 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 6 | auto idx = TypeID<Request>::localID; \ | 359 | 6 | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 6 | return refs[idx].template get<Request>(); \ | 363 | 6 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22OverriddenDeclsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 363k | getRefs() { \ | 354 | 363k | auto &refs = Name##ZoneRefs; \ | 355 | 363k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 363k | auto idx = TypeID<Request>::localID; \ | 359 | 363k | if (refs[idx].isNull()) { \ | 360 | 85 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 85 | } \ | 362 | 363k | return refs[idx].template get<Request>(); \ | 363 | 363k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23OpaqueResultTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_13IsObjCRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 560k | getRefs() { \ | 354 | 560k | auto &refs = Name##ZoneRefs; \ | 355 | 560k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 560k | auto idx = TypeID<Request>::localID; \ | 359 | 560k | if (refs[idx].isNull()) { \ | 360 | 84 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 84 | } \ | 362 | 560k | return refs[idx].template get<Request>(); \ | 363 | 560k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_14IsFinalRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 29.2k | getRefs() { \ | 354 | 29.2k | auto &refs = Name##ZoneRefs; \ | 355 | 29.2k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 29.2k | auto idx = TypeID<Request>::localID; \ | 359 | 29.2k | if (refs[idx].isNull()) { \ | 360 | 62 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 62 | } \ | 362 | 29.2k | return refs[idx].template get<Request>(); \ | 363 | 29.2k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18IsEscapableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 4.15k | getRefs() { \ | 354 | 4.15k | auto &refs = Name##ZoneRefs; \ | 355 | 4.15k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 4.15k | auto idx = TypeID<Request>::localID; \ | 359 | 4.15k | if (refs[idx].isNull()) { \ | 360 | 49 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 49 | } \ | 362 | 4.15k | return refs[idx].template get<Request>(); \ | 363 | 4.15k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_16IsDynamicRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 17.1k | getRefs() { \ | 354 | 17.1k | auto &refs = Name##ZoneRefs; \ | 355 | 17.1k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 17.1k | auto idx = TypeID<Request>::localID; \ | 359 | 17.1k | if (refs[idx].isNull()) { \ | 360 | 60 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 60 | } \ | 362 | 17.1k | return refs[idx].template get<Request>(); \ | 363 | 17.1k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30DynamicallyReplacedDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 21.7k | getRefs() { \ | 354 | 21.7k | auto &refs = Name##ZoneRefs; \ | 355 | 21.7k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 21.7k | auto idx = TypeID<Request>::localID; \ | 359 | 21.7k | if (refs[idx].isNull()) { \ | 360 | 62 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 62 | } \ | 362 | 21.7k | return refs[idx].template get<Request>(); \ | 363 | 21.7k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36IsImplicitlyUnwrappedOptionalRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 848k | getRefs() { \ | 354 | 848k | auto &refs = Name##ZoneRefs; \ | 355 | 848k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 848k | auto idx = TypeID<Request>::localID; \ | 359 | 848k | if (refs[idx].isNull()) { \ | 360 | 56 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 56 | } \ | 362 | 848k | return refs[idx].template get<Request>(); \ | 363 | 848k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20InterfaceTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 10.9M | getRefs() { \ | 354 | 10.9M | auto &refs = Name##ZoneRefs; \ | 355 | 10.9M | if (refs.empty()) { \ | 356 | 3 | refs.resize(ZoneTypes::Count); \ | 357 | 3 | } \ | 358 | 10.9M | auto idx = TypeID<Request>::localID; \ | 359 | 10.9M | if (refs[idx].isNull()) { \ | 360 | 85 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 85 | } \ | 362 | 10.9M | return refs[idx].template get<Request>(); \ | 363 | 10.9M | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18AccessLevelRequestENS_15TypeIDZoneTypesILNS_4ZoneE11EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.18M | getRefs() { \ | 354 | 1.18M | auto &refs = Name##ZoneRefs; \ | 355 | 1.18M | if (refs.empty()) { \ | 356 | 85 | refs.resize(ZoneTypes::Count); \ | 357 | 85 | } \ | 358 | 1.18M | auto idx = TypeID<Request>::localID; \ | 359 | 1.18M | if (refs[idx].isNull()) { \ | 360 | 85 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 85 | } \ | 362 | 1.18M | return refs[idx].template get<Request>(); \ | 363 | 1.18M | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31HasNoncopyableAnnotationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 126k | getRefs() { \ | 354 | 126k | auto &refs = Name##ZoneRefs; \ | 355 | 126k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 126k | auto idx = TypeID<Request>::localID; \ | 359 | 126k | if (refs[idx].isNull()) { \ | 360 | 85 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 85 | } \ | 362 | 126k | return refs[idx].template get<Request>(); \ | 363 | 126k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23StoredPropertiesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 166k | getRefs() { \ | 354 | 166k | auto &refs = Name##ZoneRefs; \ | 355 | 166k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 166k | auto idx = TypeID<Request>::localID; \ | 359 | 166k | if (refs[idx].isNull()) { \ | 360 | 61 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 61 | } \ | 362 | 166k | return refs[idx].template get<Request>(); \ | 363 | 166k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29InitAccessorPropertiesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 836 | getRefs() { \ | 354 | 836 | auto &refs = Name##ZoneRefs; \ | 355 | 836 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 836 | auto idx = TypeID<Request>::localID; \ | 359 | 836 | if (refs[idx].isNull()) { \ | 360 | 32 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 32 | } \ | 362 | 836 | return refs[idx].template get<Request>(); \ | 363 | 836 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31MemberwiseInitPropertiesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 380 | getRefs() { \ | 354 | 380 | auto &refs = Name##ZoneRefs; \ | 355 | 380 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 380 | auto idx = TypeID<Request>::localID; \ | 359 | 380 | if (refs[idx].isNull()) { \ | 360 | 24 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 24 | } \ | 362 | 380 | return refs[idx].template get<Request>(); \ | 363 | 380 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_40StoredPropertiesAndMissingMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.33k | getRefs() { \ | 354 | 1.33k | auto &refs = Name##ZoneRefs; \ | 355 | 1.33k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.33k | auto idx = TypeID<Request>::localID; \ | 359 | 1.33k | if (refs[idx].isNull()) { \ | 360 | 24 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 24 | } \ | 362 | 1.33k | return refs[idx].template get<Request>(); \ | 363 | 1.33k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30PropertyWrapperTypeInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.01k | getRefs() { \ | 354 | 1.01k | auto &refs = Name##ZoneRefs; \ | 355 | 1.01k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.01k | auto idx = TypeID<Request>::localID; \ | 359 | 1.01k | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 1.01k | return refs[idx].template get<Request>(); \ | 363 | 1.01k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_14IsActorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 253k | getRefs() { \ | 354 | 253k | auto &refs = Name##ZoneRefs; \ | 355 | 253k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 253k | auto idx = TypeID<Request>::localID; \ | 359 | 253k | if (refs[idx].isNull()) { \ | 360 | 58 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 58 | } \ | 362 | 253k | return refs[idx].template get<Request>(); \ | 363 | 253k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25IsDistributedActorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 69.1k | getRefs() { \ | 354 | 69.1k | auto &refs = Name##ZoneRefs; \ | 355 | 69.1k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 69.1k | auto idx = TypeID<Request>::localID; \ | 359 | 69.1k | if (refs[idx].isNull()) { \ | 360 | 59 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 59 | } \ | 362 | 69.1k | return refs[idx].template get<Request>(); \ | 363 | 69.1k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21UnderlyingTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 11.9k | getRefs() { \ | 354 | 11.9k | auto &refs = Name##ZoneRefs; \ | 355 | 11.9k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 11.9k | auto idx = TypeID<Request>::localID; \ | 359 | 11.9k | if (refs[idx].isNull()) { \ | 360 | 85 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 85 | } \ | 362 | 11.9k | return refs[idx].template get<Request>(); \ | 363 | 11.9k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21StructuralTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28DefaultDefinitionTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 48 | getRefs() { \ | 354 | 48 | auto &refs = Name##ZoneRefs; \ | 355 | 48 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 48 | auto idx = TypeID<Request>::localID; \ | 359 | 48 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 48 | return refs[idx].template get<Request>(); \ | 363 | 48 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18EnumRawTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 12 | getRefs() { \ | 354 | 12 | auto &refs = Name##ZoneRefs; \ | 355 | 12 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 12 | auto idx = TypeID<Request>::localID; \ | 359 | 12 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 12 | return refs[idx].template get<Request>(); \ | 363 | 12 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24HasMemberwiseInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 640 | getRefs() { \ | 354 | 640 | auto &refs = Name##ZoneRefs; \ | 355 | 640 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 640 | auto idx = TypeID<Request>::localID; \ | 359 | 640 | if (refs[idx].isNull()) { \ | 360 | 35 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 35 | } \ | 362 | 640 | return refs[idx].template get<Request>(); \ | 363 | 640 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31SynthesizeMemberwiseInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 448 | getRefs() { \ | 354 | 448 | auto &refs = Name##ZoneRefs; \ | 355 | 448 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 448 | auto idx = TypeID<Request>::localID; \ | 359 | 448 | if (refs[idx].isNull()) { \ | 360 | 23 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 23 | } \ | 362 | 448 | return refs[idx].template get<Request>(); \ | 363 | 448 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37ResolveEffectiveMemberwiseInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.54k | getRefs() { \ | 354 | 1.54k | auto &refs = Name##ZoneRefs; \ | 355 | 1.54k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.54k | auto idx = TypeID<Request>::localID; \ | 359 | 1.54k | if (refs[idx].isNull()) { \ | 360 | 26 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 26 | } \ | 362 | 1.54k | return refs[idx].template get<Request>(); \ | 363 | 1.54k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21HasDefaultInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 365 | getRefs() { \ | 354 | 365 | auto &refs = Name##ZoneRefs; \ | 355 | 365 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 365 | auto idx = TypeID<Request>::localID; \ | 359 | 365 | if (refs[idx].isNull()) { \ | 360 | 38 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 38 | } \ | 362 | 365 | return refs[idx].template get<Request>(); \ | 363 | 365 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28SynthesizeDefaultInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 20 | getRefs() { \ | 354 | 20 | auto &refs = Name##ZoneRefs; \ | 355 | 20 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 20 | auto idx = TypeID<Request>::localID; \ | 359 | 20 | if (refs[idx].isNull()) { \ | 360 | 8 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 8 | } \ | 362 | 20 | return refs[idx].template get<Request>(); \ | 363 | 20 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26GlobalActorInstanceRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 30 | getRefs() { \ | 354 | 30 | auto &refs = Name##ZoneRefs; \ | 355 | 30 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 30 | auto idx = TypeID<Request>::localID; \ | 359 | 30 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 30 | return refs[idx].template get<Request>(); \ | 363 | 30 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20GetDestructorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2.07k | getRefs() { \ | 354 | 2.07k | auto &refs = Name##ZoneRefs; \ | 355 | 2.07k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2.07k | auto idx = TypeID<Request>::localID; \ | 359 | 2.07k | if (refs[idx].isNull()) { \ | 360 | 44 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 44 | } \ | 362 | 2.07k | return refs[idx].template get<Request>(); \ | 363 | 2.07k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21IsDefaultActorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.59k | getRefs() { \ | 354 | 1.59k | auto &refs = Name##ZoneRefs; \ | 355 | 1.59k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.59k | auto idx = TypeID<Request>::localID; \ | 359 | 1.59k | if (refs[idx].isNull()) { \ | 360 | 5 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 5 | } \ | 362 | 1.59k | return refs[idx].template get<Request>(); \ | 363 | 1.59k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_39HasMissingDesignatedInitializersRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2 | getRefs() { \ | 354 | 2 | auto &refs = Name##ZoneRefs; \ | 355 | 2 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2 | auto idx = TypeID<Request>::localID; \ | 359 | 2 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 2 | return refs[idx].template get<Request>(); \ | 363 | 2 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37InheritsSuperclassInitializersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 46 | getRefs() { \ | 354 | 46 | auto &refs = Name##ZoneRefs; \ | 355 | 46 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 46 | auto idx = TypeID<Request>::localID; \ | 359 | 46 | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 46 | return refs[idx].template get<Request>(); \ | 363 | 46 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25ClassAncestryFlagsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2.62k | getRefs() { \ | 354 | 2.62k | auto &refs = Name##ZoneRefs; \ | 355 | 2.62k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2.62k | auto idx = TypeID<Request>::localID; \ | 359 | 2.62k | if (refs[idx].isNull()) { \ | 360 | 18 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 18 | } \ | 362 | 2.62k | return refs[idx].template get<Request>(); \ | 363 | 2.62k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26HasCircularRawValueRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25InheritedProtocolsRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 376k | getRefs() { \ | 354 | 376k | auto &refs = Name##ZoneRefs; \ | 355 | 376k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 376k | auto idx = TypeID<Request>::localID; \ | 359 | 376k | if (refs[idx].isNull()) { \ | 360 | 70 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 70 | } \ | 362 | 376k | return refs[idx].template get<Request>(); \ | 363 | 376k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27ProtocolRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 4.17k | getRefs() { \ | 354 | 4.17k | auto &refs = Name##ZoneRefs; \ | 355 | 4.17k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 4.17k | auto idx = TypeID<Request>::localID; \ | 359 | 4.17k | if (refs[idx].isNull()) { \ | 360 | 34 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 34 | } \ | 362 | 4.17k | return refs[idx].template get<Request>(); \ | 363 | 4.17k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21SuperclassTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2.41k | getRefs() { \ | 354 | 2.41k | auto &refs = Name##ZoneRefs; \ | 355 | 2.41k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2.41k | auto idx = TypeID<Request>::localID; \ | 359 | 2.41k | if (refs[idx].isNull()) { \ | 360 | 46 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 46 | } \ | 362 | 2.41k | return refs[idx].template get<Request>(); \ | 363 | 2.41k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21SuperclassDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ProtocolRequiresClassRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2.86k | getRefs() { \ | 354 | 2.86k | auto &refs = Name##ZoneRefs; \ | 355 | 2.86k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2.86k | auto idx = TypeID<Request>::localID; \ | 359 | 2.86k | if (refs[idx].isNull()) { \ | 360 | 40 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 40 | } \ | 362 | 2.86k | return refs[idx].template get<Request>(); \ | 363 | 2.86k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32ExistentialConformsToSelfRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 112 | getRefs() { \ | 354 | 112 | auto &refs = Name##ZoneRefs; \ | 355 | 112 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 112 | auto idx = TypeID<Request>::localID; \ | 359 | 112 | if (refs[idx].isNull()) { \ | 360 | 15 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 15 | } \ | 362 | 112 | return refs[idx].template get<Request>(); \ | 363 | 112 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_42HasSelfOrAssociatedTypeRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1 | getRefs() { \ | 354 | 1 | auto &refs = Name##ZoneRefs; \ | 355 | 1 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1 | auto idx = TypeID<Request>::localID; \ | 359 | 1 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 1 | return refs[idx].template get<Request>(); \ | 363 | 1 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29PrimaryAssociatedTypesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29StructuralRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 95 | getRefs() { \ | 354 | 95 | auto &refs = Name##ZoneRefs; \ | 355 | 95 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 95 | auto idx = TypeID<Request>::localID; \ | 359 | 95 | if (refs[idx].isNull()) { \ | 360 | 18 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 18 | } \ | 362 | 95 | return refs[idx].template get<Request>(); \ | 363 | 95 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28TypeAliasRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 24 | getRefs() { \ | 354 | 24 | auto &refs = Name##ZoneRefs; \ | 355 | 24 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 24 | auto idx = TypeID<Request>::localID; \ | 359 | 24 | if (refs[idx].isNull()) { \ | 360 | 11 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 11 | } \ | 362 | 24 | return refs[idx].template get<Request>(); \ | 363 | 24 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27ProtocolDependenciesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 54.4k | getRefs() { \ | 354 | 54.4k | auto &refs = Name##ZoneRefs; \ | 355 | 54.4k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 54.4k | auto idx = TypeID<Request>::localID; \ | 359 | 54.4k | if (refs[idx].isNull()) { \ | 360 | 70 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 70 | } \ | 362 | 54.4k | return refs[idx].template get<Request>(); \ | 363 | 54.4k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27RequirementSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 123k | getRefs() { \ | 354 | 123k | auto &refs = Name##ZoneRefs; \ | 355 | 123k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 123k | auto idx = TypeID<Request>::localID; \ | 359 | 123k | if (refs[idx].isNull()) { \ | 360 | 83 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 83 | } \ | 362 | 123k | return refs[idx].template get<Request>(); \ | 363 | 123k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36HasCircularInheritedProtocolsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 38 | getRefs() { \ | 354 | 38 | auto &refs = Name##ZoneRefs; \ | 355 | 38 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 38 | auto idx = TypeID<Request>::localID; \ | 359 | 38 | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 38 | return refs[idx].template get<Request>(); \ | 363 | 38 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17HasStorageRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 71.3k | getRefs() { \ | 354 | 71.3k | auto &refs = Name##ZoneRefs; \ | 355 | 71.3k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 71.3k | auto idx = TypeID<Request>::localID; \ | 359 | 71.3k | if (refs[idx].isNull()) { \ | 360 | 85 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 85 | } \ | 362 | 71.3k | return refs[idx].template get<Request>(); \ | 363 | 71.3k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22StorageImplInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 95.4k | getRefs() { \ | 354 | 95.4k | auto &refs = Name##ZoneRefs; \ | 355 | 95.4k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 95.4k | auto idx = TypeID<Request>::localID; \ | 359 | 95.4k | if (refs[idx].isNull()) { \ | 360 | 85 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 85 | } \ | 362 | 95.4k | return refs[idx].template get<Request>(); \ | 363 | 95.4k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24SetterAccessLevelRequestENS_15TypeIDZoneTypesILNS_4ZoneE11EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 7.93k | getRefs() { \ | 354 | 7.93k | auto &refs = Name##ZoneRefs; \ | 355 | 7.93k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 7.93k | auto idx = TypeID<Request>::localID; \ | 359 | 7.93k | if (refs[idx].isNull()) { \ | 360 | 44 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 44 | } \ | 362 | 7.93k | return refs[idx].template get<Request>(); \ | 363 | 7.93k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22HasInitAccessorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 22.9k | getRefs() { \ | 354 | 22.9k | auto &refs = Name##ZoneRefs; \ | 355 | 22.9k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 22.9k | auto idx = TypeID<Request>::localID; \ | 359 | 22.9k | if (refs[idx].isNull()) { \ | 360 | 53 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 53 | } \ | 362 | 22.9k | return refs[idx].template get<Request>(); \ | 363 | 22.9k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27DefaultInitializerIsolationENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 11.7k | getRefs() { \ | 354 | 11.7k | auto &refs = Name##ZoneRefs; \ | 355 | 11.7k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 11.7k | auto idx = TypeID<Request>::localID; \ | 359 | 11.7k | if (refs[idx].isNull()) { \ | 360 | 62 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 62 | } \ | 362 | 11.7k | return refs[idx].template get<Request>(); \ | 363 | 11.7k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20NamingPatternRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2.48k | getRefs() { \ | 354 | 2.48k | auto &refs = Name##ZoneRefs; \ | 355 | 2.48k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2.48k | auto idx = TypeID<Request>::localID; \ | 359 | 2.48k | if (refs[idx].isNull()) { \ | 360 | 50 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 50 | } \ | 362 | 2.48k | return refs[idx].template get<Request>(); \ | 363 | 2.48k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ParamSpecifierRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.11M | getRefs() { \ | 354 | 1.11M | auto &refs = Name##ZoneRefs; \ | 355 | 1.11M | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.11M | auto idx = TypeID<Request>::localID; \ | 359 | 1.11M | if (refs[idx].isNull()) { \ | 360 | 61 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 61 | } \ | 362 | 1.11M | return refs[idx].template get<Request>(); \ | 363 | 1.11M | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31AttachedPropertyWrappersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.07M | getRefs() { \ | 354 | 1.07M | auto &refs = Name##ZoneRefs; \ | 355 | 1.07M | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.07M | auto idx = TypeID<Request>::localID; \ | 359 | 1.07M | if (refs[idx].isNull()) { \ | 360 | 63 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 63 | } \ | 362 | 1.07M | return refs[idx].template get<Request>(); \ | 363 | 1.07M | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34AttachedPropertyWrapperTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 125 | getRefs() { \ | 354 | 125 | auto &refs = Name##ZoneRefs; \ | 355 | 125 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 125 | auto idx = TypeID<Request>::localID; \ | 359 | 125 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 125 | return refs[idx].template get<Request>(); \ | 363 | 125 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_41PropertyWrapperBackingPropertyTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 180 | getRefs() { \ | 354 | 180 | auto &refs = Name##ZoneRefs; \ | 355 | 180 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 180 | auto idx = TypeID<Request>::localID; \ | 359 | 180 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 180 | return refs[idx].template get<Request>(); \ | 363 | 180 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_40PropertyWrapperAuxiliaryVariablesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 3.85k | getRefs() { \ | 354 | 3.85k | auto &refs = Name##ZoneRefs; \ | 355 | 3.85k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 3.85k | auto idx = TypeID<Request>::localID; \ | 359 | 3.85k | if (refs[idx].isNull()) { \ | 360 | 40 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 40 | } \ | 362 | 3.85k | return refs[idx].template get<Request>(); \ | 363 | 3.85k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37PropertyWrapperInitializerInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 946 | getRefs() { \ | 354 | 946 | auto &refs = Name##ZoneRefs; \ | 355 | 946 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 946 | auto idx = TypeID<Request>::localID; \ | 359 | 946 | if (refs[idx].isNull()) { \ | 360 | 25 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 25 | } \ | 362 | 946 | return refs[idx].template get<Request>(); \ | 363 | 946 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32PropertyWrapperMutabilityRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 3.06k | getRefs() { \ | 354 | 3.06k | auto &refs = Name##ZoneRefs; \ | 355 | 3.06k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 3.06k | auto idx = TypeID<Request>::localID; \ | 359 | 3.06k | if (refs[idx].isNull()) { \ | 360 | 53 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 53 | } \ | 362 | 3.06k | return refs[idx].template get<Request>(); \ | 363 | 3.06k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26LazyStoragePropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_33DefaultArgumentInitContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 134 | getRefs() { \ | 354 | 134 | auto &refs = Name##ZoneRefs; \ | 355 | 134 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 134 | auto idx = TypeID<Request>::localID; \ | 359 | 134 | if (refs[idx].isNull()) { \ | 360 | 8 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 8 | } \ | 362 | 134 | return refs[idx].template get<Request>(); \ | 363 | 134 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26DefaultArgumentExprRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 146 | getRefs() { \ | 354 | 146 | auto &refs = Name##ZoneRefs; \ | 355 | 146 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 146 | auto idx = TypeID<Request>::localID; \ | 359 | 146 | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 146 | return refs[idx].template get<Request>(); \ | 363 | 146 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26DefaultArgumentTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.11k | getRefs() { \ | 354 | 1.11k | auto &refs = Name##ZoneRefs; \ | 355 | 1.11k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.11k | auto idx = TypeID<Request>::localID; \ | 359 | 1.11k | if (refs[idx].isNull()) { \ | 360 | 40 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 40 | } \ | 362 | 1.11k | return refs[idx].template get<Request>(); \ | 363 | 1.11k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ResultBuilderTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 7.37k | getRefs() { \ | 354 | 7.37k | auto &refs = Name##ZoneRefs; \ | 355 | 7.37k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 7.37k | auto idx = TypeID<Request>::localID; \ | 359 | 7.37k | if (refs[idx].isNull()) { \ | 360 | 55 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 55 | } \ | 362 | 7.37k | return refs[idx].template get<Request>(); \ | 363 | 7.37k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28AttachedResultBuilderRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.75k | getRefs() { \ | 354 | 1.75k | auto &refs = Name##ZoneRefs; \ | 355 | 1.75k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.75k | auto idx = TypeID<Request>::localID; \ | 359 | 1.75k | if (refs[idx].isNull()) { \ | 360 | 53 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 53 | } \ | 362 | 1.75k | return refs[idx].template get<Request>(); \ | 363 | 1.75k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17ResultTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 386k | getRefs() { \ | 354 | 386k | auto &refs = Name##ZoneRefs; \ | 355 | 386k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 386k | auto idx = TypeID<Request>::localID; \ | 359 | 386k | if (refs[idx].isNull()) { \ | 360 | 64 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 64 | } \ | 362 | 386k | return refs[idx].template get<Request>(); \ | 363 | 386k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18RenamedDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32ParseAbstractFunctionBodyRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 998k | getRefs() { \ | 354 | 998k | auto &refs = Name##ZoneRefs; \ | 355 | 998k | if (refs.empty()) { \ | 356 | 49 | refs.resize(ZoneTypes::Count); \ | 357 | 49 | } \ | 358 | 998k | auto idx = TypeID<Request>::localID; \ | 359 | 998k | if (refs[idx].isNull()) { \ | 360 | 58 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 58 | } \ | 362 | 998k | return refs[idx].template get<Request>(); \ | 363 | 998k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28TypeCheckFunctionBodyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 13.5k | getRefs() { \ | 354 | 13.5k | auto &refs = Name##ZoneRefs; \ | 355 | 13.5k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 13.5k | auto idx = TypeID<Request>::localID; \ | 359 | 13.5k | if (refs[idx].isNull()) { \ | 360 | 59 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 59 | } \ | 362 | 13.5k | return refs[idx].template get<Request>(); \ | 363 | 13.5k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28IsFunctionBodySkippedRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 36.6k | getRefs() { \ | 354 | 36.6k | auto &refs = Name##ZoneRefs; \ | 355 | 36.6k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 36.6k | auto idx = TypeID<Request>::localID; \ | 359 | 36.6k | if (refs[idx].isNull()) { \ | 360 | 63 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 63 | } \ | 362 | 36.6k | return refs[idx].template get<Request>(); \ | 363 | 36.6k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26NeedsNewVTableEntryRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 9.26k | getRefs() { \ | 354 | 9.26k | auto &refs = Name##ZoneRefs; \ | 355 | 9.26k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 9.26k | auto idx = TypeID<Request>::localID; \ | 359 | 9.26k | if (refs[idx].isNull()) { \ | 360 | 9 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 9 | } \ | 362 | 9.26k | return refs[idx].template get<Request>(); \ | 363 | 9.26k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23FunctionOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 647 | getRefs() { \ | 354 | 647 | auto &refs = Name##ZoneRefs; \ | 355 | 647 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 647 | auto idx = TypeID<Request>::localID; \ | 359 | 647 | if (refs[idx].isNull()) { \ | 360 | 34 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 34 | } \ | 362 | 647 | return refs[idx].template get<Request>(); \ | 363 | 647 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_15IsStaticRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 836k | getRefs() { \ | 354 | 836k | auto &refs = Name##ZoneRefs; \ | 355 | 836k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 836k | auto idx = TypeID<Request>::localID; \ | 359 | 836k | if (refs[idx].isNull()) { \ | 360 | 62 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 62 | } \ | 362 | 836k | return refs[idx].template get<Request>(); \ | 363 | 836k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19SimpleDidSetRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21SelfAccessKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 82.2k | getRefs() { \ | 354 | 82.2k | auto &refs = Name##ZoneRefs; \ | 355 | 82.2k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 82.2k | auto idx = TypeID<Request>::localID; \ | 359 | 82.2k | if (refs[idx].isNull()) { \ | 360 | 57 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 57 | } \ | 362 | 82.2k | return refs[idx].template get<Request>(); \ | 363 | 82.2k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20EnumRawValuesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2 | getRefs() { \ | 354 | 2 | auto &refs = Name##ZoneRefs; \ | 355 | 2 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2 | auto idx = TypeID<Request>::localID; \ | 359 | 2 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 2 | return refs[idx].template get<Request>(); \ | 363 | 2 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_15InitKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 7.62k | getRefs() { \ | 354 | 7.62k | auto &refs = Name##ZoneRefs; \ | 355 | 7.62k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 7.62k | auto idx = TypeID<Request>::localID; \ | 359 | 7.62k | if (refs[idx].isNull()) { \ | 360 | 56 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 56 | } \ | 362 | 7.62k | return refs[idx].template get<Request>(); \ | 363 | 7.62k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19BodyInitKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 6.49k | getRefs() { \ | 354 | 6.49k | auto &refs = Name##ZoneRefs; \ | 355 | 6.49k | if (refs.empty()) { \ | 356 | 101 | refs.resize(ZoneTypes::Count); \ | 357 | 101 | } \ | 358 | 6.49k | auto idx = TypeID<Request>::localID; \ | 359 | 6.49k | if (refs[idx].isNull()) { \ | 360 | 101 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 101 | } \ | 362 | 6.49k | return refs[idx].template get<Request>(); \ | 363 | 6.49k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30OperatorPrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.99k | getRefs() { \ | 354 | 1.99k | auto &refs = Name##ZoneRefs; \ | 355 | 1.99k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.99k | auto idx = TypeID<Request>::localID; \ | 359 | 1.99k | if (refs[idx].isNull()) { \ | 360 | 38 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 38 | } \ | 362 | 1.99k | return refs[idx].template get<Request>(); \ | 363 | 1.99k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ActorIsolationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 483k | getRefs() { \ | 354 | 483k | auto &refs = Name##ZoneRefs; \ | 355 | 483k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 483k | auto idx = TypeID<Request>::localID; \ | 359 | 483k | if (refs[idx].isNull()) { \ | 360 | 63 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 63 | } \ | 362 | 483k | return refs[idx].template get<Request>(); \ | 363 | 483k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31ExpandMacroExpansionExprRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ResolveMacroConformancesENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22MacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ResolveImplicitMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26FragileFunctionKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 29.9k | getRefs() { \ | 354 | 29.9k | auto &refs = Name##ZoneRefs; \ | 355 | 29.9k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 29.9k | auto idx = TypeID<Request>::localID; \ | 359 | 29.9k | if (refs[idx].isNull()) { \ | 360 | 63 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 63 | } \ | 362 | 29.9k | return refs[idx].template get<Request>(); \ | 363 | 29.9k | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19ParseMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 16.2k | getRefs() { \ | 354 | 16.2k | auto &refs = Name##ZoneRefs; \ | 355 | 16.2k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 16.2k | auto idx = TypeID<Request>::localID; \ | 359 | 16.2k | if (refs[idx].isNull()) { \ | 360 | 40 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 40 | } \ | 362 | 16.2k | return refs[idx].template get<Request>(); \ | 363 | 16.2k | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17ABIMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.45k | getRefs() { \ | 354 | 1.45k | auto &refs = Name##ZoneRefs; \ | 355 | 1.45k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.45k | auto idx = TypeID<Request>::localID; \ | 359 | 1.45k | if (refs[idx].isNull()) { \ | 360 | 36 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 36 | } \ | 362 | 1.45k | return refs[idx].template get<Request>(); \ | 363 | 1.45k | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17AllMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 324 | getRefs() { \ | 354 | 324 | auto &refs = Name##ZoneRefs; \ | 355 | 324 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 324 | auto idx = TypeID<Request>::localID; \ | 359 | 324 | if (refs[idx].isNull()) { \ | 360 | 27 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 27 | } \ | 362 | 324 | return refs[idx].template get<Request>(); \ | 363 | 324 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_48GetDistributedActorArgumentDecodingMethodRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_43GetDistributedActorInvocationDecoderRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_49GetDistributedRemoteCallTargetInitFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_51GetDistributedRemoteCallArgumentInitFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_50GetDistributedActorSystemRemoteCallFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26GetDistributedThunkRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_40GetDistributedActorSystemPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36GetDistributedActorIDPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27SemanticBriefCommentRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36PolymorphicEffectRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Effects.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28PolymorphicEffectKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 32.0k | getRefs() { \ | 354 | 32.0k | auto &refs = Name##ZoneRefs; \ | 355 | 32.0k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 32.0k | auto idx = TypeID<Request>::localID; \ | 359 | 32.0k | if (refs[idx].isNull()) { \ | 360 | 50 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 50 | } \ | 362 | 32.0k | return refs[idx].template get<Request>(); \ | 363 | 32.0k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27ConformanceHasEffectRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Expr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31CallerSideDefaultArgExprRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2.48k | getRefs() { \ | 354 | 2.48k | auto &refs = Name##ZoneRefs; \ | 355 | 2.48k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2.48k | auto idx = TypeID<Request>::localID; \ | 359 | 2.48k | if (refs[idx].isNull()) { \ | 360 | 38 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 38 | } \ | 362 | 2.48k | return refs[idx].template get<Request>(); \ | 363 | 2.48k | } |
Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Expr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ClosureEffectsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 723k | getRefs() { \ | 354 | 723k | auto &refs = Name##ZoneRefs; \ | 355 | 723k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 723k | auto idx = TypeID<Request>::localID; \ | 359 | 723k | if (refs[idx].isNull()) { \ | 360 | 39 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 39 | } \ | 362 | 723k | return refs[idx].template get<Request>(); \ | 363 | 723k | } |
GenericSignature.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31AbstractGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 10.7k | getRefs() { \ | 354 | 10.7k | auto &refs = Name##ZoneRefs; \ | 355 | 10.7k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 10.7k | auto idx = TypeID<Request>::localID; \ | 359 | 10.7k | if (refs[idx].isNull()) { \ | 360 | 51 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 51 | } \ | 362 | 10.7k | return refs[idx].template get<Request>(); \ | 363 | 10.7k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22IsNonUserModuleRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ModuleImplicitImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25PrimarySourceFilesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26MangleLocalTypeDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ExpandExtensionMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 263k | getRefs() { \ | 354 | 263k | auto &refs = Name##ZoneRefs; \ | 355 | 263k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 263k | auto idx = TypeID<Request>::localID; \ | 359 | 263k | if (refs[idx].isNull()) { \ | 360 | 68 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 68 | } \ | 362 | 263k | return refs[idx].template get<Request>(); \ | 363 | 263k | } |
Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_39ImplicitKnownProtocolConformanceRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.55k | getRefs() { \ | 354 | 1.55k | auto &refs = Name##ZoneRefs; \ | 355 | 1.55k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.55k | auto idx = TypeID<Request>::localID; \ | 359 | 1.55k | if (refs[idx].isNull()) { \ | 360 | 36 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 36 | } \ | 362 | 1.55k | return refs[idx].template get<Request>(); \ | 363 | 1.55k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_41GetDistributedActorImplicitCodableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22ParseSourceFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 878 | getRefs() { \ | 354 | 878 | auto &refs = Name##ZoneRefs; \ | 355 | 878 | if (refs.empty()) { \ | 356 | 36 | refs.resize(ZoneTypes::Count); \ | 357 | 36 | } \ | 358 | 878 | auto idx = TypeID<Request>::localID; \ | 359 | 878 | if (refs[idx].isNull()) { \ | 360 | 85 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 85 | } \ | 362 | 878 | return refs[idx].template get<Request>(); \ | 363 | 878 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29HasImportsMatchingFlagRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_16SPIGroupsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 155k | getRefs() { \ | 354 | 155k | auto &refs = Name##ZoneRefs; \ | 355 | 155k | if (refs.empty()) { \ | 356 | 6 | refs.resize(ZoneTypes::Count); \ | 357 | 6 | } \ | 358 | 155k | auto idx = TypeID<Request>::localID; \ | 359 | 155k | if (refs[idx].isNull()) { \ | 360 | 63 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 63 | } \ | 362 | 155k | return refs[idx].template get<Request>(); \ | 363 | 155k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25ModuleLibraryLevelRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25ParseTopLevelDeclsRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.01k | getRefs() { \ | 354 | 1.01k | auto &refs = Name##ZoneRefs; \ | 355 | 1.01k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.01k | auto idx = TypeID<Request>::localID; \ | 359 | 1.01k | if (refs[idx].isNull()) { \ | 360 | 85 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 85 | } \ | 362 | 1.01k | return refs[idx].template get<Request>(); \ | 363 | 1.01k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25ExportedSourceFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22GetSourceFileAsyncNodeENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 8.67k | getRefs() { \ | 354 | 8.67k | auto &refs = Name##ZoneRefs; \ | 355 | 8.67k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 8.67k | auto idx = TypeID<Request>::localID; \ | 359 | 8.67k | if (refs[idx].isNull()) { \ | 360 | 45 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 45 | } \ | 362 | 8.67k | return refs[idx].template get<Request>(); \ | 363 | 8.67k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32LookupConformanceInModuleRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ModuleNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21LookupInModuleRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_35ExpandSynthesizedMemberMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.66k | getRefs() { \ | 354 | 1.66k | auto &refs = Name##ZoneRefs; \ | 355 | 1.66k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.66k | auto idx = TypeID<Request>::localID; \ | 359 | 1.66k | if (refs[idx].isNull()) { \ | 360 | 39 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 39 | } \ | 362 | 1.66k | return refs[idx].template get<Request>(); \ | 363 | 1.66k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ExpandExtensionMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_40PotentialMacroExpansionsInContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.63k | getRefs() { \ | 354 | 1.63k | auto &refs = Name##ZoneRefs; \ | 355 | 1.63k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.63k | auto idx = TypeID<Request>::localID; \ | 359 | 1.63k | if (refs[idx].isNull()) { \ | 360 | 27 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 27 | } \ | 362 | 1.63k | return refs[idx].template get<Request>(); \ | 363 | 1.63k | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21SuperclassDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 82.5k | getRefs() { \ | 354 | 82.5k | auto &refs = Name##ZoneRefs; \ | 355 | 82.5k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 82.5k | auto idx = TypeID<Request>::localID; \ | 359 | 82.5k | if (refs[idx].isNull()) { \ | 360 | 54 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 54 | } \ | 362 | 82.5k | return refs[idx].template get<Request>(); \ | 363 | 82.5k | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30IsCallAsFunctionNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 27 | getRefs() { \ | 354 | 27 | auto &refs = Name##ZoneRefs; \ | 355 | 27 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 27 | auto idx = TypeID<Request>::localID; \ | 359 | 27 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 27 | return refs[idx].template get<Request>(); \ | 363 | 27 | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_38HasDynamicMemberLookupAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 7.07k | getRefs() { \ | 354 | 7.07k | auto &refs = Name##ZoneRefs; \ | 355 | 7.07k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 7.07k | auto idx = TypeID<Request>::localID; \ | 359 | 7.07k | if (refs[idx].isNull()) { \ | 360 | 42 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 42 | } \ | 362 | 7.07k | return refs[idx].template get<Request>(); \ | 363 | 7.07k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34HasDynamicCallableAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32SelfBoundsFromWhereClauseRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37SelfBoundsFromGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24UnqualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19DirectLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24CXXNamespaceMemberLookupENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23ClangRecordMemberLookupENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22AnyObjectLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22QualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ModuleQualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36UnderlyingTypeDeclsReferencedRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31InheritedDeclsReferencedRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26LookupInfixOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2.22k | getRefs() { \ | 354 | 2.22k | auto &refs = Name##ZoneRefs; \ | 355 | 2.22k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2.22k | auto idx = TypeID<Request>::localID; \ | 359 | 2.22k | if (refs[idx].isNull()) { \ | 360 | 46 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 46 | } \ | 362 | 2.22k | return refs[idx].template get<Request>(); \ | 363 | 2.22k | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27LookupPrefixOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28LookupPostfixOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28LookupPrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 828 | getRefs() { \ | 354 | 828 | auto &refs = Name##ZoneRefs; \ | 355 | 828 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 828 | auto idx = TypeID<Request>::localID; \ | 359 | 828 | if (refs[idx].isNull()) { \ | 360 | 30 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 30 | } \ | 362 | 828 | return refs[idx].template get<Request>(); \ | 363 | 828 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27DirectOperatorLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34DirectPrecedenceGroupLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23ExprPatternMatchRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30ConditionalRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 138k | getRefs() { \ | 354 | 138k | auto &refs = Name##ZoneRefs; \ | 355 | 138k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 138k | auto idx = TypeID<Request>::localID; \ | 359 | 138k | if (refs[idx].isNull()) { \ | 360 | 62 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 62 | } \ | 362 | 138k | return refs[idx].template get<Request>(); \ | 363 | 138k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18TypeWitnessRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 62 | getRefs() { \ | 354 | 62 | auto &refs = Name##ZoneRefs; \ | 355 | 62 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 62 | auto idx = TypeID<Request>::localID; \ | 359 | 62 | if (refs[idx].isNull()) { \ | 360 | 21 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 21 | } \ | 362 | 62 | return refs[idx].template get<Request>(); \ | 363 | 62 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28AssociatedConformanceRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 610 | getRefs() { \ | 354 | 610 | auto &refs = Name##ZoneRefs; \ | 355 | 610 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 610 | auto idx = TypeID<Request>::localID; \ | 359 | 610 | if (refs[idx].isNull()) { \ | 360 | 32 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 32 | } \ | 362 | 610 | return refs[idx].template get<Request>(); \ | 363 | 610 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19ValueWitnessRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 22.4k | getRefs() { \ | 354 | 22.4k | auto &refs = Name##ZoneRefs; \ | 355 | 22.4k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 22.4k | auto idx = TypeID<Request>::localID; \ | 359 | 22.4k | if (refs[idx].isNull()) { \ | 360 | 48 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 48 | } \ | 362 | 22.4k | return refs[idx].template get<Request>(); \ | 363 | 22.4k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37LookupAllConformancesInContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 9.02k | getRefs() { \ | 354 | 9.02k | auto &refs = Name##ZoneRefs; \ | 355 | 9.02k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 9.02k | auto idx = TypeID<Request>::localID; \ | 359 | 9.02k | if (refs[idx].isNull()) { \ | 360 | 43 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 43 | } \ | 362 | 9.02k | return refs[idx].template get<Request>(); \ | 363 | 9.02k | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17RawCommentRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31AbstractGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Stmt.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24IsSingleValueStmtRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 16 | getRefs() { \ | 354 | 16 | auto &refs = Name##ZoneRefs; \ | 355 | 16 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 16 | auto idx = TypeID<Request>::localID; \ | 359 | 16 | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 16 | return refs[idx].template get<Request>(); \ | 363 | 16 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18BreakTargetRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Stmt.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ContinueTargetRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 24 | getRefs() { \ | 354 | 24 | auto &refs = Name##ZoneRefs; \ | 355 | 24 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 24 | auto idx = TypeID<Request>::localID; \ | 359 | 24 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 24 | return refs[idx].template get<Request>(); \ | 363 | 24 | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20IsNoncopyableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckRequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18RequirementRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 783 | getRefs() { \ | 354 | 783 | auto &refs = Name##ZoneRefs; \ | 355 | 783 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 783 | auto idx = TypeID<Request>::localID; \ | 359 | 783 | if (refs[idx].isNull()) { \ | 360 | 33 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 33 | } \ | 362 | 783 | return refs[idx].template get<Request>(); \ | 363 | 783 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_40ExpandChildTypeRefinementContextsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 6.54k | getRefs() { \ | 354 | 6.54k | auto &refs = Name##ZoneRefs; \ | 355 | 6.54k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 6.54k | auto idx = TypeID<Request>::localID; \ | 359 | 6.54k | if (refs[idx].isNull()) { \ | 360 | 44 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 44 | } \ | 362 | 6.54k | return refs[idx].template get<Request>(); \ | 363 | 6.54k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20USRGenerationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv |
364 | | #include "swift/Basic/TypeIDZones.def" |
365 | | #undef SWIFT_TYPEID_ZONE |
366 | | |
367 | | public: |
368 | | template <typename Request> |
369 | | typename llvm::DenseMap<RequestKey<Request>, |
370 | | std::vector<DependencyCollector::Reference>>::const_iterator |
371 | 13.3M | find_as(const Request &req) { |
372 | 13.3M | auto *refs = getRefs<Request>(); |
373 | 13.3M | return refs->find_as(req); |
374 | 13.3M | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24IDEInspectionFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24ConstantValueInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ IRGen.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_12IRGenRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 49 | find_as(const Request &req) { | 372 | 49 | auto *refs = getRefs<Request>(); | 373 | 49 | return refs->find_as(req); | 374 | 49 | } |
SILGen.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18ASTLoweringRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 79 | find_as(const Request &req) { | 372 | 79 | auto *refs = getRefs<Request>(); | 373 | 79 | return refs->find_as(req); | 374 | 79 | } |
Unexecuted instantiation: Common.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28TangentStoredPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18ASTLoweringRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26ResolveProtocolNameRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29CollectOverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24TypeRelationCheckRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28PreCheckResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ CSRanking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_32CompareDeclSpecializationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 2.20k | find_as(const Request &req) { | 372 | 2.20k | auto *refs = getRefs<Request>(); | 373 | 2.20k | return refs->find_as(req); | 374 | 2.20k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29EnumElementExprPatternRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ CSStep.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25IsDeclRefinementOfRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 2.69k | find_as(const Request &req) { | 372 | 2.69k | auto *refs = getRefs<Request>(); | 373 | 2.69k | return refs->find_as(req); | 374 | 2.69k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_35HasUserDefinedDesignatedInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 306 | find_as(const Request &req) { | 372 | 306 | auto *refs = getRefs<Request>(); | 373 | 306 | return refs->find_as(req); | 374 | 306 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_44AreAllStoredPropertiesDefaultInitableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 20 | find_as(const Request &req) { | 372 | 20 | auto *refs = getRefs<Request>(); | 373 | 20 | return refs->find_as(req); | 374 | 20 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ ConstraintSystem.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31ClosureHasExplicitResultRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 14 | find_as(const Request &req) { | 372 | 14 | auto *refs = getRefs<Request>(); | 373 | 14 | return refs->find_as(req); | 374 | 14 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28IsCCompatibleFuncDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_35DistributedModuleIsAvailableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31CheckDistributedFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30ValidatePrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 133 | find_as(const Request &req) { | 372 | 133 | auto *refs = getRefs<Request>(); | 373 | 133 | return refs->find_as(req); | 374 | 133 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22OverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_34TypeCheckObjCImplementationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20InheritedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25CheckRedeclarationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 4.68k | find_as(const Request &req) { | 372 | 4.68k | auto *refs = getRefs<Request>(); | 373 | 4.68k | return refs->find_as(req); | 374 | 4.68k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22ApplyAccessNoteRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 10.7k | find_as(const Request &req) { | 372 | 10.7k | auto *refs = getRefs<Request>(); | 373 | 10.7k | return refs->find_as(req); | 374 | 10.7k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckExpr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18DefaultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 163k | find_as(const Request &req) { | 372 | 163k | auto *refs = getRefs<Request>(); | 373 | 163k | return refs->find_as(req); | 374 | 163k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31HasNoncopyableAnnotationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25CompilerPluginLoadRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckPattern.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18PatternTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 864 | find_as(const Request &req) { | 372 | 864 | auto *refs = getRefs<Request>(); | 373 | 864 | return refs->find_as(req); | 374 | 864 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20InheritedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 196 | find_as(const Request &req) { | 372 | 196 | auto *refs = getRefs<Request>(); | 373 | 196 | return refs->find_as(req); | 374 | 196 | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 502 | find_as(const Request &req) { | 372 | 502 | auto *refs = getRefs<Request>(); | 373 | 502 | return refs->find_as(req); | 374 | 502 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 9 | find_as(const Request &req) { | 372 | 9 | auto *refs = getRefs<Request>(); | 373 | 9 | return refs->find_as(req); | 374 | 9 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_32PropertyWrapperLValuenessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 32 | find_as(const Request &req) { | 372 | 32 | auto *refs = getRefs<Request>(); | 373 | 32 | return refs->find_as(req); | 374 | 32 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20ExpandAccessorMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26TypeCheckSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 187 | find_as(const Request &req) { | 372 | 187 | auto *refs = getRefs<Request>(); | 373 | 187 | return refs->find_as(req); | 374 | 187 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_49CheckInconsistentImplementationOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_38CheckInconsistentSPIOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36CheckInconsistentAccessLevelOnImportEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_41CheckInconsistentWeakLinkedImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_37ObjCInterfaceAndImplementationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30IDEInspectionSecondPassRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22ParseSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30TypeEraserHasViableInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28ResolveTypeEraserTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31ResolveRawLayoutLikeTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31SpecializeAttrTargetDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36SerializeAttrGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_39DifferentiableAttributeTypeCheckRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 2.58k | find_as(const Request &req) { | 372 | 2.58k | auto *refs = getRefs<Request>(); | 373 | 2.58k | return refs->find_as(req); | 374 | 2.58k | } |
Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_33DerivativeAttrOriginalDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 68 | find_as(const Request &req) { | 372 | 68 | auto *refs = getRefs<Request>(); | 373 | 68 | return refs->find_as(req); | 374 | 68 | } |
Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29ImplementsAttrProtocolRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 80 | find_as(const Request &req) { | 372 | 80 | auto *refs = getRefs<Request>(); | 373 | 80 | return refs->find_as(req); | 374 | 80 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_38InitAccessorReferencedVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_33SemanticAvailableRangeAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Availability.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30SemanticUnavailableAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 19.0k | find_as(const Request &req) { | 372 | 19.0k | auto *refs = getRefs<Request>(); | 373 | 19.0k | return refs->find_as(req); | 374 | 19.0k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27ExpandMemberAttributeMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 59.5k | find_as(const Request &req) { | 372 | 59.5k | auto *refs = getRefs<Request>(); | 373 | 59.5k | return refs->find_as(req); | 374 | 59.5k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 16.5k | find_as(const Request &req) { | 372 | 16.5k | auto *refs = getRefs<Request>(); | 373 | 16.5k | return refs->find_as(req); | 374 | 16.5k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 25 | find_as(const Request &req) { | 372 | 25 | auto *refs = getRefs<Request>(); | 373 | 25 | return refs->find_as(req); | 374 | 25 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 548k | find_as(const Request &req) { | 372 | 548k | auto *refs = getRefs<Request>(); | 373 | 548k | return refs->find_as(req); | 374 | 548k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_17ThrownTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28IsAccessorTransparentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 234 | find_as(const Request &req) { | 372 | 234 | auto *refs = getRefs<Request>(); | 373 | 234 | return refs->find_as(req); | 374 | 234 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23GenericParamListRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 706k | find_as(const Request &req) { | 372 | 706k | auto *refs = getRefs<Request>(); | 373 | 706k | return refs->find_as(req); | 374 | 706k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23GenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 789k | find_as(const Request &req) { | 372 | 789k | auto *refs = getRefs<Request>(); | 373 | 789k | return refs->find_as(req); | 374 | 789k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25ScopedImportLookupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20InheritedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22ExtendedNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 89 | find_as(const Request &req) { | 372 | 89 | auto *refs = getRefs<Request>(); | 373 | 89 | return refs->find_as(req); | 374 | 89 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31DefaultAndMaxAccessLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 89 | find_as(const Request &req) { | 372 | 89 | auto *refs = getRefs<Request>(); | 373 | 89 | return refs->find_as(req); | 374 | 89 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19ExtendedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 318 | find_as(const Request &req) { | 372 | 318 | auto *refs = getRefs<Request>(); | 373 | 318 | return refs->find_as(req); | 374 | 318 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26PatternBindingEntryRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30RequiresOpaqueAccessorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 6.01k | find_as(const Request &req) { | 372 | 6.01k | auto *refs = getRefs<Request>(); | 373 | 6.01k | return refs->find_as(req); | 374 | 6.01k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36RequiresOpaqueModifyCoroutineRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.51k | find_as(const Request &req) { | 372 | 1.51k | auto *refs = getRefs<Request>(); | 373 | 1.51k | return refs->find_as(req); | 374 | 1.51k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25SynthesizeAccessorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 18 | find_as(const Request &req) { | 372 | 18 | auto *refs = getRefs<Request>(); | 373 | 18 | return refs->find_as(req); | 374 | 18 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23IsGetterMutatingRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 6.97k | find_as(const Request &req) { | 372 | 6.97k | auto *refs = getRefs<Request>(); | 373 | 6.97k | return refs->find_as(req); | 374 | 6.97k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23IsSetterMutatingRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 4.58k | find_as(const Request &req) { | 372 | 4.58k | auto *refs = getRefs<Request>(); | 373 | 4.58k | return refs->find_as(req); | 374 | 4.58k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26OpaqueReadOwnershipRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 4.22k | find_as(const Request &req) { | 372 | 4.22k | auto *refs = getRefs<Request>(); | 373 | 4.22k | return refs->find_as(req); | 374 | 4.22k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22OverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 181k | find_as(const Request &req) { | 372 | 181k | auto *refs = getRefs<Request>(); | 373 | 181k | return refs->find_as(req); | 374 | 181k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23OpaqueResultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_13IsObjCRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 280k | find_as(const Request &req) { | 372 | 280k | auto *refs = getRefs<Request>(); | 373 | 280k | return refs->find_as(req); | 374 | 280k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_14IsFinalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 14.6k | find_as(const Request &req) { | 372 | 14.6k | auto *refs = getRefs<Request>(); | 373 | 14.6k | return refs->find_as(req); | 374 | 14.6k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18IsEscapableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 2.07k | find_as(const Request &req) { | 372 | 2.07k | auto *refs = getRefs<Request>(); | 373 | 2.07k | return refs->find_as(req); | 374 | 2.07k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_16IsDynamicRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 8.34k | find_as(const Request &req) { | 372 | 8.34k | auto *refs = getRefs<Request>(); | 373 | 8.34k | return refs->find_as(req); | 374 | 8.34k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30DynamicallyReplacedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 10.8k | find_as(const Request &req) { | 372 | 10.8k | auto *refs = getRefs<Request>(); | 373 | 10.8k | return refs->find_as(req); | 374 | 10.8k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36IsImplicitlyUnwrappedOptionalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 424k | find_as(const Request &req) { | 372 | 424k | auto *refs = getRefs<Request>(); | 373 | 424k | return refs->find_as(req); | 374 | 424k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20InterfaceTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 5.48M | find_as(const Request &req) { | 372 | 5.48M | auto *refs = getRefs<Request>(); | 373 | 5.48M | return refs->find_as(req); | 374 | 5.48M | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18AccessLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 593k | find_as(const Request &req) { | 372 | 593k | auto *refs = getRefs<Request>(); | 373 | 593k | return refs->find_as(req); | 374 | 593k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31HasNoncopyableAnnotationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 63.1k | find_as(const Request &req) { | 372 | 63.1k | auto *refs = getRefs<Request>(); | 373 | 63.1k | return refs->find_as(req); | 374 | 63.1k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23StoredPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 83.0k | find_as(const Request &req) { | 372 | 83.0k | auto *refs = getRefs<Request>(); | 373 | 83.0k | return refs->find_as(req); | 374 | 83.0k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29InitAccessorPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 415 | find_as(const Request &req) { | 372 | 415 | auto *refs = getRefs<Request>(); | 373 | 415 | return refs->find_as(req); | 374 | 415 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31MemberwiseInitPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 187 | find_as(const Request &req) { | 372 | 187 | auto *refs = getRefs<Request>(); | 373 | 187 | return refs->find_as(req); | 374 | 187 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_40StoredPropertiesAndMissingMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 663 | find_as(const Request &req) { | 372 | 663 | auto *refs = getRefs<Request>(); | 373 | 663 | return refs->find_as(req); | 374 | 663 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30PropertyWrapperTypeInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 502 | find_as(const Request &req) { | 372 | 502 | auto *refs = getRefs<Request>(); | 373 | 502 | return refs->find_as(req); | 374 | 502 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_14IsActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 126k | find_as(const Request &req) { | 372 | 126k | auto *refs = getRefs<Request>(); | 373 | 126k | return refs->find_as(req); | 374 | 126k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25IsDistributedActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 34.3k | find_as(const Request &req) { | 372 | 34.3k | auto *refs = getRefs<Request>(); | 373 | 34.3k | return refs->find_as(req); | 374 | 34.3k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21UnderlyingTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 5.94k | find_as(const Request &req) { | 372 | 5.94k | auto *refs = getRefs<Request>(); | 373 | 5.94k | return refs->find_as(req); | 374 | 5.94k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21StructuralTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28DefaultDefinitionTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 24 | find_as(const Request &req) { | 372 | 24 | auto *refs = getRefs<Request>(); | 373 | 24 | return refs->find_as(req); | 374 | 24 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18EnumRawTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 6 | find_as(const Request &req) { | 372 | 6 | auto *refs = getRefs<Request>(); | 373 | 6 | return refs->find_as(req); | 374 | 6 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24HasMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 179 | find_as(const Request &req) { | 372 | 179 | auto *refs = getRefs<Request>(); | 373 | 179 | return refs->find_as(req); | 374 | 179 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31SynthesizeMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 132 | find_as(const Request &req) { | 372 | 132 | auto *refs = getRefs<Request>(); | 373 | 132 | return refs->find_as(req); | 374 | 132 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_37ResolveEffectiveMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 684 | find_as(const Request &req) { | 372 | 684 | auto *refs = getRefs<Request>(); | 373 | 684 | return refs->find_as(req); | 374 | 684 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21HasDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28SynthesizeDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26GlobalActorInstanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 15 | find_as(const Request &req) { | 372 | 15 | auto *refs = getRefs<Request>(); | 373 | 15 | return refs->find_as(req); | 374 | 15 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20GetDestructorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.03k | find_as(const Request &req) { | 372 | 1.03k | auto *refs = getRefs<Request>(); | 373 | 1.03k | return refs->find_as(req); | 374 | 1.03k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21IsDefaultActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 795 | find_as(const Request &req) { | 372 | 795 | auto *refs = getRefs<Request>(); | 373 | 795 | return refs->find_as(req); | 374 | 795 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_39HasMissingDesignatedInitializersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_37InheritsSuperclassInitializersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 16 | find_as(const Request &req) { | 372 | 16 | auto *refs = getRefs<Request>(); | 373 | 16 | return refs->find_as(req); | 374 | 16 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25ClassAncestryFlagsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.27k | find_as(const Request &req) { | 372 | 1.27k | auto *refs = getRefs<Request>(); | 373 | 1.27k | return refs->find_as(req); | 374 | 1.27k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25InheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 188k | find_as(const Request &req) { | 372 | 188k | auto *refs = getRefs<Request>(); | 373 | 188k | return refs->find_as(req); | 374 | 188k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27ProtocolRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 2.07k | find_as(const Request &req) { | 372 | 2.07k | auto *refs = getRefs<Request>(); | 373 | 2.07k | return refs->find_as(req); | 374 | 2.07k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21SuperclassTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.17k | find_as(const Request &req) { | 372 | 1.17k | auto *refs = getRefs<Request>(); | 373 | 1.17k | return refs->find_as(req); | 374 | 1.17k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21SuperclassDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28ProtocolRequiresClassRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.43k | find_as(const Request &req) { | 372 | 1.43k | auto *refs = getRefs<Request>(); | 373 | 1.43k | return refs->find_as(req); | 374 | 1.43k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_32ExistentialConformsToSelfRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 56 | find_as(const Request &req) { | 372 | 56 | auto *refs = getRefs<Request>(); | 373 | 56 | return refs->find_as(req); | 374 | 56 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_42HasSelfOrAssociatedTypeRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29PrimaryAssociatedTypesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29StructuralRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 35 | find_as(const Request &req) { | 372 | 35 | auto *refs = getRefs<Request>(); | 373 | 35 | return refs->find_as(req); | 374 | 35 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28TypeAliasRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27ProtocolDependenciesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 27.2k | find_as(const Request &req) { | 372 | 27.2k | auto *refs = getRefs<Request>(); | 373 | 27.2k | return refs->find_as(req); | 374 | 27.2k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27RequirementSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 61.5k | find_as(const Request &req) { | 372 | 61.5k | auto *refs = getRefs<Request>(); | 373 | 61.5k | return refs->find_as(req); | 374 | 61.5k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 11 | find_as(const Request &req) { | 372 | 11 | auto *refs = getRefs<Request>(); | 373 | 11 | return refs->find_as(req); | 374 | 11 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_17HasStorageRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 35.6k | find_as(const Request &req) { | 372 | 35.6k | auto *refs = getRefs<Request>(); | 373 | 35.6k | return refs->find_as(req); | 374 | 35.6k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22StorageImplInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 47.6k | find_as(const Request &req) { | 372 | 47.6k | auto *refs = getRefs<Request>(); | 373 | 47.6k | return refs->find_as(req); | 374 | 47.6k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24SetterAccessLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 3.96k | find_as(const Request &req) { | 372 | 3.96k | auto *refs = getRefs<Request>(); | 373 | 3.96k | return refs->find_as(req); | 374 | 3.96k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22HasInitAccessorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 11.4k | find_as(const Request &req) { | 372 | 11.4k | auto *refs = getRefs<Request>(); | 373 | 11.4k | return refs->find_as(req); | 374 | 11.4k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27DefaultInitializerIsolationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 5.20k | find_as(const Request &req) { | 372 | 5.20k | auto *refs = getRefs<Request>(); | 373 | 5.20k | return refs->find_as(req); | 374 | 5.20k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20NamingPatternRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.11k | find_as(const Request &req) { | 372 | 1.11k | auto *refs = getRefs<Request>(); | 373 | 1.11k | return refs->find_as(req); | 374 | 1.11k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ParamSpecifierRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 558k | find_as(const Request &req) { | 372 | 558k | auto *refs = getRefs<Request>(); | 373 | 558k | return refs->find_as(req); | 374 | 558k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 538k | find_as(const Request &req) { | 372 | 538k | auto *refs = getRefs<Request>(); | 373 | 538k | return refs->find_as(req); | 374 | 538k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_34AttachedPropertyWrapperTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 50 | find_as(const Request &req) { | 372 | 50 | auto *refs = getRefs<Request>(); | 373 | 50 | return refs->find_as(req); | 374 | 50 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_41PropertyWrapperBackingPropertyTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 80 | find_as(const Request &req) { | 372 | 80 | auto *refs = getRefs<Request>(); | 373 | 80 | return refs->find_as(req); | 374 | 80 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_40PropertyWrapperAuxiliaryVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.91k | find_as(const Request &req) { | 372 | 1.91k | auto *refs = getRefs<Request>(); | 373 | 1.91k | return refs->find_as(req); | 374 | 1.91k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_37PropertyWrapperInitializerInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 463 | find_as(const Request &req) { | 372 | 463 | auto *refs = getRefs<Request>(); | 373 | 463 | return refs->find_as(req); | 374 | 463 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_32PropertyWrapperMutabilityRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.51k | find_as(const Request &req) { | 372 | 1.51k | auto *refs = getRefs<Request>(); | 373 | 1.51k | return refs->find_as(req); | 374 | 1.51k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26LazyStoragePropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_33DefaultArgumentInitContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 67 | find_as(const Request &req) { | 372 | 67 | auto *refs = getRefs<Request>(); | 373 | 67 | return refs->find_as(req); | 374 | 67 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26DefaultArgumentExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 62 | find_as(const Request &req) { | 372 | 62 | auto *refs = getRefs<Request>(); | 373 | 62 | return refs->find_as(req); | 374 | 62 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26DefaultArgumentTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 558 | find_as(const Request &req) { | 372 | 558 | auto *refs = getRefs<Request>(); | 373 | 558 | return refs->find_as(req); | 374 | 558 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24ResultBuilderTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 3.39k | find_as(const Request &req) { | 372 | 3.39k | auto *refs = getRefs<Request>(); | 373 | 3.39k | return refs->find_as(req); | 374 | 3.39k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28AttachedResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 867 | find_as(const Request &req) { | 372 | 867 | auto *refs = getRefs<Request>(); | 373 | 867 | return refs->find_as(req); | 374 | 867 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_17ResultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 192k | find_as(const Request &req) { | 372 | 192k | auto *refs = getRefs<Request>(); | 373 | 192k | return refs->find_as(req); | 374 | 192k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_32ParseAbstractFunctionBodyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 498k | find_as(const Request &req) { | 372 | 498k | auto *refs = getRefs<Request>(); | 373 | 498k | return refs->find_as(req); | 374 | 498k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28TypeCheckFunctionBodyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 5.70k | find_as(const Request &req) { | 372 | 5.70k | auto *refs = getRefs<Request>(); | 373 | 5.70k | return refs->find_as(req); | 374 | 5.70k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28IsFunctionBodySkippedRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 18.3k | find_as(const Request &req) { | 372 | 18.3k | auto *refs = getRefs<Request>(); | 373 | 18.3k | return refs->find_as(req); | 374 | 18.3k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26NeedsNewVTableEntryRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 4.58k | find_as(const Request &req) { | 372 | 4.58k | auto *refs = getRefs<Request>(); | 373 | 4.58k | return refs->find_as(req); | 374 | 4.58k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23FunctionOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 228 | find_as(const Request &req) { | 372 | 228 | auto *refs = getRefs<Request>(); | 373 | 228 | return refs->find_as(req); | 374 | 228 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_15IsStaticRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 418k | find_as(const Request &req) { | 372 | 418k | auto *refs = getRefs<Request>(); | 373 | 418k | return refs->find_as(req); | 374 | 418k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19SimpleDidSetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21SelfAccessKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 41.1k | find_as(const Request &req) { | 372 | 41.1k | auto *refs = getRefs<Request>(); | 373 | 41.1k | return refs->find_as(req); | 374 | 41.1k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20EnumRawValuesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1 | find_as(const Request &req) { | 372 | 1 | auto *refs = getRefs<Request>(); | 373 | 1 | return refs->find_as(req); | 374 | 1 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_15InitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 3.81k | find_as(const Request &req) { | 372 | 3.81k | auto *refs = getRefs<Request>(); | 373 | 3.81k | return refs->find_as(req); | 374 | 3.81k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19BodyInitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 54 | find_as(const Request &req) { | 372 | 54 | auto *refs = getRefs<Request>(); | 373 | 54 | return refs->find_as(req); | 374 | 54 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30OperatorPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 998 | find_as(const Request &req) { | 372 | 998 | auto *refs = getRefs<Request>(); | 373 | 998 | return refs->find_as(req); | 374 | 998 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ActorIsolationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 239k | find_as(const Request &req) { | 372 | 239k | auto *refs = getRefs<Request>(); | 373 | 239k | return refs->find_as(req); | 374 | 239k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22MacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26FragileFunctionKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 14.9k | find_as(const Request &req) { | 372 | 14.9k | auto *refs = getRefs<Request>(); | 373 | 14.9k | return refs->find_as(req); | 374 | 14.9k | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19ParseMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 8.12k | find_as(const Request &req) { | 372 | 8.12k | auto *refs = getRefs<Request>(); | 373 | 8.12k | return refs->find_as(req); | 374 | 8.12k | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_17ABIMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 592 | find_as(const Request &req) { | 372 | 592 | auto *refs = getRefs<Request>(); | 373 | 592 | return refs->find_as(req); | 374 | 592 | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_17AllMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 95 | find_as(const Request &req) { | 372 | 95 | auto *refs = getRefs<Request>(); | 373 | 95 | return refs->find_as(req); | 374 | 95 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_48GetDistributedActorArgumentDecodingMethodRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_43GetDistributedActorInvocationDecoderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26GetDistributedThunkRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_40GetDistributedActorSystemPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36GetDistributedActorIDPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27SemanticBriefCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36PolymorphicEffectRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Effects.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28PolymorphicEffectKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 16.0k | find_as(const Request &req) { | 372 | 16.0k | auto *refs = getRefs<Request>(); | 373 | 16.0k | return refs->find_as(req); | 374 | 16.0k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27ConformanceHasEffectRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31CallerSideDefaultArgExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Expr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 361k | find_as(const Request &req) { | 372 | 361k | auto *refs = getRefs<Request>(); | 373 | 361k | return refs->find_as(req); | 374 | 361k | } |
GenericSignature.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 5.28k | find_as(const Request &req) { | 372 | 5.28k | auto *refs = getRefs<Request>(); | 373 | 5.28k | return refs->find_as(req); | 374 | 5.28k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22IsNonUserModuleRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28ModuleImplicitImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25PrimarySourceFilesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 131k | find_as(const Request &req) { | 372 | 131k | auto *refs = getRefs<Request>(); | 373 | 131k | return refs->find_as(req); | 374 | 131k | } |
Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_39ImplicitKnownProtocolConformanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 674 | find_as(const Request &req) { | 372 | 674 | auto *refs = getRefs<Request>(); | 373 | 674 | return refs->find_as(req); | 374 | 674 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_41GetDistributedActorImplicitCodableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22ParseSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 439 | find_as(const Request &req) { | 372 | 439 | auto *refs = getRefs<Request>(); | 373 | 439 | return refs->find_as(req); | 374 | 439 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29HasImportsMatchingFlagRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_16SPIGroupsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 77.7k | find_as(const Request &req) { | 372 | 77.7k | auto *refs = getRefs<Request>(); | 373 | 77.7k | return refs->find_as(req); | 374 | 77.7k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25ModuleLibraryLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25ParseTopLevelDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 509 | find_as(const Request &req) { | 372 | 509 | auto *refs = getRefs<Request>(); | 373 | 509 | return refs->find_as(req); | 374 | 509 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25ExportedSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22GetSourceFileAsyncNodeEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 4.33k | find_as(const Request &req) { | 372 | 4.33k | auto *refs = getRefs<Request>(); | 373 | 4.33k | return refs->find_as(req); | 374 | 4.33k | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 830 | find_as(const Request &req) { | 372 | 830 | auto *refs = getRefs<Request>(); | 373 | 830 | return refs->find_as(req); | 374 | 830 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 813 | find_as(const Request &req) { | 372 | 813 | auto *refs = getRefs<Request>(); | 373 | 813 | return refs->find_as(req); | 374 | 813 | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21SuperclassDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 41.1k | find_as(const Request &req) { | 372 | 41.1k | auto *refs = getRefs<Request>(); | 373 | 41.1k | return refs->find_as(req); | 374 | 41.1k | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30IsCallAsFunctionNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 12 | find_as(const Request &req) { | 372 | 12 | auto *refs = getRefs<Request>(); | 373 | 12 | return refs->find_as(req); | 374 | 12 | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_38HasDynamicMemberLookupAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 3.36k | find_as(const Request &req) { | 372 | 3.36k | auto *refs = getRefs<Request>(); | 373 | 3.36k | return refs->find_as(req); | 374 | 3.36k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26LookupInfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.03k | find_as(const Request &req) { | 372 | 1.03k | auto *refs = getRefs<Request>(); | 373 | 1.03k | return refs->find_as(req); | 374 | 1.03k | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27LookupPrefixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28LookupPostfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28LookupPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 396 | find_as(const Request &req) { | 372 | 396 | auto *refs = getRefs<Request>(); | 373 | 396 | return refs->find_as(req); | 374 | 396 | } |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23ExprPatternMatchRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30ConditionalRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 69.2k | find_as(const Request &req) { | 372 | 69.2k | auto *refs = getRefs<Request>(); | 373 | 69.2k | return refs->find_as(req); | 374 | 69.2k | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18TypeWitnessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28AssociatedConformanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19ValueWitnessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 11.2k | find_as(const Request &req) { | 372 | 11.2k | auto *refs = getRefs<Request>(); | 373 | 11.2k | return refs->find_as(req); | 374 | 11.2k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_37LookupAllConformancesInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 4.44k | find_as(const Request &req) { | 372 | 4.44k | auto *refs = getRefs<Request>(); | 373 | 4.44k | return refs->find_as(req); | 374 | 4.44k | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_17RawCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Stmt.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24IsSingleValueStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 8 | find_as(const Request &req) { | 372 | 8 | auto *refs = getRefs<Request>(); | 373 | 8 | return refs->find_as(req); | 374 | 8 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18BreakTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Stmt.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ContinueTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 12 | find_as(const Request &req) { | 372 | 12 | auto *refs = getRefs<Request>(); | 373 | 12 | return refs->find_as(req); | 374 | 12 | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20IsNoncopyableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckRequests.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18RequirementRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 187 | find_as(const Request &req) { | 372 | 187 | auto *refs = getRefs<Request>(); | 373 | 187 | return refs->find_as(req); | 374 | 187 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_40ExpandChildTypeRefinementContextsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 3.27k | find_as(const Request &req) { | 372 | 3.27k | auto *refs = getRefs<Request>(); | 373 | 3.27k | return refs->find_as(req); | 374 | 3.27k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ |
375 | | |
376 | | template <typename Request> |
377 | | typename llvm::DenseMap<RequestKey<Request>, |
378 | | std::vector<DependencyCollector::Reference>>::const_iterator |
379 | 13.3M | end() { |
380 | 13.3M | auto *refs = getRefs<Request>(); |
381 | 13.3M | return refs->end(); |
382 | 13.3M | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24IDEInspectionFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24ConstantValueInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv IRGen.cpp:_ZN5swift9evaluator17RequestReferences3endINS_12IRGenRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 49 | end() { | 380 | 49 | auto *refs = getRefs<Request>(); | 381 | 49 | return refs->end(); | 382 | 49 | } |
SILGen.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18ASTLoweringRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 79 | end() { | 380 | 79 | auto *refs = getRefs<Request>(); | 381 | 79 | return refs->end(); | 382 | 79 | } |
Unexecuted instantiation: Common.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28TangentStoredPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18ASTLoweringRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26ResolveProtocolNameRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29CollectOverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24TypeRelationCheckRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28PreCheckResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv CSRanking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_32CompareDeclSpecializationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 2.20k | end() { | 380 | 2.20k | auto *refs = getRefs<Request>(); | 381 | 2.20k | return refs->end(); | 382 | 2.20k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29EnumElementExprPatternRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences3endINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv CSStep.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25IsDeclRefinementOfRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 2.69k | end() { | 380 | 2.69k | auto *refs = getRefs<Request>(); | 381 | 2.69k | return refs->end(); | 382 | 2.69k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator17RequestReferences3endINS_35HasUserDefinedDesignatedInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 306 | end() { | 380 | 306 | auto *refs = getRefs<Request>(); | 381 | 306 | return refs->end(); | 382 | 306 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator17RequestReferences3endINS_44AreAllStoredPropertiesDefaultInitableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 20 | end() { | 380 | 20 | auto *refs = getRefs<Request>(); | 381 | 20 | return refs->end(); | 382 | 20 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv ConstraintSystem.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31ClosureHasExplicitResultRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 14 | end() { | 380 | 14 | auto *refs = getRefs<Request>(); | 381 | 14 | return refs->end(); | 382 | 14 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences3endINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28IsCCompatibleFuncDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator17RequestReferences3endINS_35DistributedModuleIsAvailableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31CheckDistributedFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30ValidatePrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 133 | end() { | 380 | 133 | auto *refs = getRefs<Request>(); | 381 | 133 | return refs->end(); | 382 | 133 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22OverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator17RequestReferences3endINS_34TypeCheckObjCImplementationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20InheritedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25CheckRedeclarationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 4.68k | end() { | 380 | 4.68k | auto *refs = getRefs<Request>(); | 381 | 4.68k | return refs->end(); | 382 | 4.68k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22ApplyAccessNoteRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 10.7k | end() { | 380 | 10.7k | auto *refs = getRefs<Request>(); | 381 | 10.7k | return refs->end(); | 382 | 10.7k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckExpr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18DefaultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 163k | end() { | 380 | 163k | auto *refs = getRefs<Request>(); | 381 | 163k | return refs->end(); | 382 | 163k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31HasNoncopyableAnnotationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25CompilerPluginLoadRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckPattern.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18PatternTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 864 | end() { | 380 | 864 | auto *refs = getRefs<Request>(); | 381 | 864 | return refs->end(); | 382 | 864 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator17RequestReferences3endINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20InheritedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 196 | end() { | 380 | 196 | auto *refs = getRefs<Request>(); | 381 | 196 | return refs->end(); | 382 | 196 | } |
TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 502 | end() { | 380 | 502 | auto *refs = getRefs<Request>(); | 381 | 502 | return refs->end(); | 382 | 502 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 9 | end() { | 380 | 9 | auto *refs = getRefs<Request>(); | 381 | 9 | return refs->end(); | 382 | 9 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences3endINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences3endINS_32PropertyWrapperLValuenessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 32 | end() { | 380 | 32 | auto *refs = getRefs<Request>(); | 381 | 32 | return refs->end(); | 382 | 32 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20ExpandAccessorMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26TypeCheckSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 187 | end() { | 380 | 187 | auto *refs = getRefs<Request>(); | 381 | 187 | return refs->end(); | 382 | 187 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences3endINS_49CheckInconsistentImplementationOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences3endINS_38CheckInconsistentSPIOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36CheckInconsistentAccessLevelOnImportEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences3endINS_41CheckInconsistentWeakLinkedImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator17RequestReferences3endINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences3endINS_37ObjCInterfaceAndImplementationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30IDEInspectionSecondPassRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22ParseSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30TypeEraserHasViableInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28ResolveTypeEraserTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31ResolveRawLayoutLikeTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31SpecializeAttrTargetDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36SerializeAttrGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_39DifferentiableAttributeTypeCheckRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 2.58k | end() { | 380 | 2.58k | auto *refs = getRefs<Request>(); | 381 | 2.58k | return refs->end(); | 382 | 2.58k | } |
Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_33DerivativeAttrOriginalDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 68 | end() { | 380 | 68 | auto *refs = getRefs<Request>(); | 381 | 68 | return refs->end(); | 382 | 68 | } |
Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29ImplementsAttrProtocolRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 80 | end() { | 380 | 80 | auto *refs = getRefs<Request>(); | 381 | 80 | return refs->end(); | 382 | 80 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_38InitAccessorReferencedVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator17RequestReferences3endINS_33SemanticAvailableRangeAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Availability.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30SemanticUnavailableAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 19.0k | end() { | 380 | 19.0k | auto *refs = getRefs<Request>(); | 381 | 19.0k | return refs->end(); | 382 | 19.0k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27ExpandMemberAttributeMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 59.5k | end() { | 380 | 59.5k | auto *refs = getRefs<Request>(); | 381 | 59.5k | return refs->end(); | 382 | 59.5k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 16.5k | end() { | 380 | 16.5k | auto *refs = getRefs<Request>(); | 381 | 16.5k | return refs->end(); | 382 | 16.5k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 25 | end() { | 380 | 25 | auto *refs = getRefs<Request>(); | 381 | 25 | return refs->end(); | 382 | 25 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 548k | end() { | 380 | 548k | auto *refs = getRefs<Request>(); | 381 | 548k | return refs->end(); | 382 | 548k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_17ThrownTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28IsAccessorTransparentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 234 | end() { | 380 | 234 | auto *refs = getRefs<Request>(); | 381 | 234 | return refs->end(); | 382 | 234 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23GenericParamListRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 706k | end() { | 380 | 706k | auto *refs = getRefs<Request>(); | 381 | 706k | return refs->end(); | 382 | 706k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23GenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 789k | end() { | 380 | 789k | auto *refs = getRefs<Request>(); | 381 | 789k | return refs->end(); | 382 | 789k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25ScopedImportLookupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20InheritedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22ExtendedNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 89 | end() { | 380 | 89 | auto *refs = getRefs<Request>(); | 381 | 89 | return refs->end(); | 382 | 89 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31DefaultAndMaxAccessLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 89 | end() { | 380 | 89 | auto *refs = getRefs<Request>(); | 381 | 89 | return refs->end(); | 382 | 89 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19ExtendedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 318 | end() { | 380 | 318 | auto *refs = getRefs<Request>(); | 381 | 318 | return refs->end(); | 382 | 318 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26PatternBindingEntryRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30RequiresOpaqueAccessorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 6.01k | end() { | 380 | 6.01k | auto *refs = getRefs<Request>(); | 381 | 6.01k | return refs->end(); | 382 | 6.01k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36RequiresOpaqueModifyCoroutineRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.51k | end() { | 380 | 1.51k | auto *refs = getRefs<Request>(); | 381 | 1.51k | return refs->end(); | 382 | 1.51k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25SynthesizeAccessorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 18 | end() { | 380 | 18 | auto *refs = getRefs<Request>(); | 381 | 18 | return refs->end(); | 382 | 18 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23IsGetterMutatingRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 6.97k | end() { | 380 | 6.97k | auto *refs = getRefs<Request>(); | 381 | 6.97k | return refs->end(); | 382 | 6.97k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23IsSetterMutatingRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 4.58k | end() { | 380 | 4.58k | auto *refs = getRefs<Request>(); | 381 | 4.58k | return refs->end(); | 382 | 4.58k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26OpaqueReadOwnershipRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 4.22k | end() { | 380 | 4.22k | auto *refs = getRefs<Request>(); | 381 | 4.22k | return refs->end(); | 382 | 4.22k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22OverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 181k | end() { | 380 | 181k | auto *refs = getRefs<Request>(); | 381 | 181k | return refs->end(); | 382 | 181k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23OpaqueResultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_13IsObjCRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 280k | end() { | 380 | 280k | auto *refs = getRefs<Request>(); | 381 | 280k | return refs->end(); | 382 | 280k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_14IsFinalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 14.6k | end() { | 380 | 14.6k | auto *refs = getRefs<Request>(); | 381 | 14.6k | return refs->end(); | 382 | 14.6k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18IsEscapableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 2.07k | end() { | 380 | 2.07k | auto *refs = getRefs<Request>(); | 381 | 2.07k | return refs->end(); | 382 | 2.07k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_16IsDynamicRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 8.34k | end() { | 380 | 8.34k | auto *refs = getRefs<Request>(); | 381 | 8.34k | return refs->end(); | 382 | 8.34k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30DynamicallyReplacedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 10.8k | end() { | 380 | 10.8k | auto *refs = getRefs<Request>(); | 381 | 10.8k | return refs->end(); | 382 | 10.8k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36IsImplicitlyUnwrappedOptionalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 424k | end() { | 380 | 424k | auto *refs = getRefs<Request>(); | 381 | 424k | return refs->end(); | 382 | 424k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20InterfaceTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 5.48M | end() { | 380 | 5.48M | auto *refs = getRefs<Request>(); | 381 | 5.48M | return refs->end(); | 382 | 5.48M | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18AccessLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 593k | end() { | 380 | 593k | auto *refs = getRefs<Request>(); | 381 | 593k | return refs->end(); | 382 | 593k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31HasNoncopyableAnnotationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 63.1k | end() { | 380 | 63.1k | auto *refs = getRefs<Request>(); | 381 | 63.1k | return refs->end(); | 382 | 63.1k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23StoredPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 83.0k | end() { | 380 | 83.0k | auto *refs = getRefs<Request>(); | 381 | 83.0k | return refs->end(); | 382 | 83.0k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29InitAccessorPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 415 | end() { | 380 | 415 | auto *refs = getRefs<Request>(); | 381 | 415 | return refs->end(); | 382 | 415 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31MemberwiseInitPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 187 | end() { | 380 | 187 | auto *refs = getRefs<Request>(); | 381 | 187 | return refs->end(); | 382 | 187 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_40StoredPropertiesAndMissingMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 663 | end() { | 380 | 663 | auto *refs = getRefs<Request>(); | 381 | 663 | return refs->end(); | 382 | 663 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30PropertyWrapperTypeInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 502 | end() { | 380 | 502 | auto *refs = getRefs<Request>(); | 381 | 502 | return refs->end(); | 382 | 502 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_14IsActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 126k | end() { | 380 | 126k | auto *refs = getRefs<Request>(); | 381 | 126k | return refs->end(); | 382 | 126k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25IsDistributedActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 34.3k | end() { | 380 | 34.3k | auto *refs = getRefs<Request>(); | 381 | 34.3k | return refs->end(); | 382 | 34.3k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21UnderlyingTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 5.94k | end() { | 380 | 5.94k | auto *refs = getRefs<Request>(); | 381 | 5.94k | return refs->end(); | 382 | 5.94k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21StructuralTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28DefaultDefinitionTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 24 | end() { | 380 | 24 | auto *refs = getRefs<Request>(); | 381 | 24 | return refs->end(); | 382 | 24 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18EnumRawTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 6 | end() { | 380 | 6 | auto *refs = getRefs<Request>(); | 381 | 6 | return refs->end(); | 382 | 6 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24HasMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 179 | end() { | 380 | 179 | auto *refs = getRefs<Request>(); | 381 | 179 | return refs->end(); | 382 | 179 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31SynthesizeMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 132 | end() { | 380 | 132 | auto *refs = getRefs<Request>(); | 381 | 132 | return refs->end(); | 382 | 132 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_37ResolveEffectiveMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 684 | end() { | 380 | 684 | auto *refs = getRefs<Request>(); | 381 | 684 | return refs->end(); | 382 | 684 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21HasDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28SynthesizeDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26GlobalActorInstanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 15 | end() { | 380 | 15 | auto *refs = getRefs<Request>(); | 381 | 15 | return refs->end(); | 382 | 15 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20GetDestructorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.03k | end() { | 380 | 1.03k | auto *refs = getRefs<Request>(); | 381 | 1.03k | return refs->end(); | 382 | 1.03k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21IsDefaultActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 795 | end() { | 380 | 795 | auto *refs = getRefs<Request>(); | 381 | 795 | return refs->end(); | 382 | 795 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_39HasMissingDesignatedInitializersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_37InheritsSuperclassInitializersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 16 | end() { | 380 | 16 | auto *refs = getRefs<Request>(); | 381 | 16 | return refs->end(); | 382 | 16 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25ClassAncestryFlagsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.27k | end() { | 380 | 1.27k | auto *refs = getRefs<Request>(); | 381 | 1.27k | return refs->end(); | 382 | 1.27k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25InheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 188k | end() { | 380 | 188k | auto *refs = getRefs<Request>(); | 381 | 188k | return refs->end(); | 382 | 188k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27ProtocolRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 2.07k | end() { | 380 | 2.07k | auto *refs = getRefs<Request>(); | 381 | 2.07k | return refs->end(); | 382 | 2.07k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21SuperclassTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.17k | end() { | 380 | 1.17k | auto *refs = getRefs<Request>(); | 381 | 1.17k | return refs->end(); | 382 | 1.17k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21SuperclassDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28ProtocolRequiresClassRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.43k | end() { | 380 | 1.43k | auto *refs = getRefs<Request>(); | 381 | 1.43k | return refs->end(); | 382 | 1.43k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_32ExistentialConformsToSelfRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 56 | end() { | 380 | 56 | auto *refs = getRefs<Request>(); | 381 | 56 | return refs->end(); | 382 | 56 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_42HasSelfOrAssociatedTypeRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29PrimaryAssociatedTypesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29StructuralRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 35 | end() { | 380 | 35 | auto *refs = getRefs<Request>(); | 381 | 35 | return refs->end(); | 382 | 35 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28TypeAliasRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27ProtocolDependenciesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 27.2k | end() { | 380 | 27.2k | auto *refs = getRefs<Request>(); | 381 | 27.2k | return refs->end(); | 382 | 27.2k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27RequirementSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 61.5k | end() { | 380 | 61.5k | auto *refs = getRefs<Request>(); | 381 | 61.5k | return refs->end(); | 382 | 61.5k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 11 | end() { | 380 | 11 | auto *refs = getRefs<Request>(); | 381 | 11 | return refs->end(); | 382 | 11 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_17HasStorageRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 35.6k | end() { | 380 | 35.6k | auto *refs = getRefs<Request>(); | 381 | 35.6k | return refs->end(); | 382 | 35.6k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22StorageImplInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 47.6k | end() { | 380 | 47.6k | auto *refs = getRefs<Request>(); | 381 | 47.6k | return refs->end(); | 382 | 47.6k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24SetterAccessLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 3.96k | end() { | 380 | 3.96k | auto *refs = getRefs<Request>(); | 381 | 3.96k | return refs->end(); | 382 | 3.96k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22HasInitAccessorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 11.4k | end() { | 380 | 11.4k | auto *refs = getRefs<Request>(); | 381 | 11.4k | return refs->end(); | 382 | 11.4k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27DefaultInitializerIsolationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 5.20k | end() { | 380 | 5.20k | auto *refs = getRefs<Request>(); | 381 | 5.20k | return refs->end(); | 382 | 5.20k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20NamingPatternRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.11k | end() { | 380 | 1.11k | auto *refs = getRefs<Request>(); | 381 | 1.11k | return refs->end(); | 382 | 1.11k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ParamSpecifierRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 558k | end() { | 380 | 558k | auto *refs = getRefs<Request>(); | 381 | 558k | return refs->end(); | 382 | 558k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 538k | end() { | 380 | 538k | auto *refs = getRefs<Request>(); | 381 | 538k | return refs->end(); | 382 | 538k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_34AttachedPropertyWrapperTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 50 | end() { | 380 | 50 | auto *refs = getRefs<Request>(); | 381 | 50 | return refs->end(); | 382 | 50 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_41PropertyWrapperBackingPropertyTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 80 | end() { | 380 | 80 | auto *refs = getRefs<Request>(); | 381 | 80 | return refs->end(); | 382 | 80 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_40PropertyWrapperAuxiliaryVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.91k | end() { | 380 | 1.91k | auto *refs = getRefs<Request>(); | 381 | 1.91k | return refs->end(); | 382 | 1.91k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_37PropertyWrapperInitializerInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 463 | end() { | 380 | 463 | auto *refs = getRefs<Request>(); | 381 | 463 | return refs->end(); | 382 | 463 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_32PropertyWrapperMutabilityRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.51k | end() { | 380 | 1.51k | auto *refs = getRefs<Request>(); | 381 | 1.51k | return refs->end(); | 382 | 1.51k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26LazyStoragePropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_33DefaultArgumentInitContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 67 | end() { | 380 | 67 | auto *refs = getRefs<Request>(); | 381 | 67 | return refs->end(); | 382 | 67 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26DefaultArgumentExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 62 | end() { | 380 | 62 | auto *refs = getRefs<Request>(); | 381 | 62 | return refs->end(); | 382 | 62 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26DefaultArgumentTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 558 | end() { | 380 | 558 | auto *refs = getRefs<Request>(); | 381 | 558 | return refs->end(); | 382 | 558 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24ResultBuilderTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 3.39k | end() { | 380 | 3.39k | auto *refs = getRefs<Request>(); | 381 | 3.39k | return refs->end(); | 382 | 3.39k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28AttachedResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 867 | end() { | 380 | 867 | auto *refs = getRefs<Request>(); | 381 | 867 | return refs->end(); | 382 | 867 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_17ResultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 192k | end() { | 380 | 192k | auto *refs = getRefs<Request>(); | 381 | 192k | return refs->end(); | 382 | 192k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_32ParseAbstractFunctionBodyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 498k | end() { | 380 | 498k | auto *refs = getRefs<Request>(); | 381 | 498k | return refs->end(); | 382 | 498k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28TypeCheckFunctionBodyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 5.70k | end() { | 380 | 5.70k | auto *refs = getRefs<Request>(); | 381 | 5.70k | return refs->end(); | 382 | 5.70k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28IsFunctionBodySkippedRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 18.3k | end() { | 380 | 18.3k | auto *refs = getRefs<Request>(); | 381 | 18.3k | return refs->end(); | 382 | 18.3k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26NeedsNewVTableEntryRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 4.58k | end() { | 380 | 4.58k | auto *refs = getRefs<Request>(); | 381 | 4.58k | return refs->end(); | 382 | 4.58k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23FunctionOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 228 | end() { | 380 | 228 | auto *refs = getRefs<Request>(); | 381 | 228 | return refs->end(); | 382 | 228 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_15IsStaticRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 418k | end() { | 380 | 418k | auto *refs = getRefs<Request>(); | 381 | 418k | return refs->end(); | 382 | 418k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19SimpleDidSetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21SelfAccessKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 41.1k | end() { | 380 | 41.1k | auto *refs = getRefs<Request>(); | 381 | 41.1k | return refs->end(); | 382 | 41.1k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20EnumRawValuesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1 | end() { | 380 | 1 | auto *refs = getRefs<Request>(); | 381 | 1 | return refs->end(); | 382 | 1 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_15InitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 3.81k | end() { | 380 | 3.81k | auto *refs = getRefs<Request>(); | 381 | 3.81k | return refs->end(); | 382 | 3.81k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19BodyInitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 54 | end() { | 380 | 54 | auto *refs = getRefs<Request>(); | 381 | 54 | return refs->end(); | 382 | 54 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30OperatorPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 998 | end() { | 380 | 998 | auto *refs = getRefs<Request>(); | 381 | 998 | return refs->end(); | 382 | 998 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ActorIsolationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 239k | end() { | 380 | 239k | auto *refs = getRefs<Request>(); | 381 | 239k | return refs->end(); | 382 | 239k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22MacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv DeclContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26FragileFunctionKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 14.9k | end() { | 380 | 14.9k | auto *refs = getRefs<Request>(); | 381 | 14.9k | return refs->end(); | 382 | 14.9k | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19ParseMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 8.12k | end() { | 380 | 8.12k | auto *refs = getRefs<Request>(); | 381 | 8.12k | return refs->end(); | 382 | 8.12k | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_17ABIMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 592 | end() { | 380 | 592 | auto *refs = getRefs<Request>(); | 381 | 592 | return refs->end(); | 382 | 592 | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_17AllMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 95 | end() { | 380 | 95 | auto *refs = getRefs<Request>(); | 381 | 95 | return refs->end(); | 382 | 95 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_48GetDistributedActorArgumentDecodingMethodRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_43GetDistributedActorInvocationDecoderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26GetDistributedThunkRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_40GetDistributedActorSystemPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36GetDistributedActorIDPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27SemanticBriefCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36PolymorphicEffectRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Effects.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28PolymorphicEffectKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 16.0k | end() { | 380 | 16.0k | auto *refs = getRefs<Request>(); | 381 | 16.0k | return refs->end(); | 382 | 16.0k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27ConformanceHasEffectRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31CallerSideDefaultArgExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Expr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 361k | end() { | 380 | 361k | auto *refs = getRefs<Request>(); | 381 | 361k | return refs->end(); | 382 | 361k | } |
GenericSignature.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 5.28k | end() { | 380 | 5.28k | auto *refs = getRefs<Request>(); | 381 | 5.28k | return refs->end(); | 382 | 5.28k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22IsNonUserModuleRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28ModuleImplicitImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25PrimarySourceFilesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 131k | end() { | 380 | 131k | auto *refs = getRefs<Request>(); | 381 | 131k | return refs->end(); | 382 | 131k | } |
Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_39ImplicitKnownProtocolConformanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 674 | end() { | 380 | 674 | auto *refs = getRefs<Request>(); | 381 | 674 | return refs->end(); | 382 | 674 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_41GetDistributedActorImplicitCodableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22ParseSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 439 | end() { | 380 | 439 | auto *refs = getRefs<Request>(); | 381 | 439 | return refs->end(); | 382 | 439 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29HasImportsMatchingFlagRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_16SPIGroupsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 77.7k | end() { | 380 | 77.7k | auto *refs = getRefs<Request>(); | 381 | 77.7k | return refs->end(); | 382 | 77.7k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25ModuleLibraryLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25ParseTopLevelDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 509 | end() { | 380 | 509 | auto *refs = getRefs<Request>(); | 381 | 509 | return refs->end(); | 382 | 509 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25ExportedSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22GetSourceFileAsyncNodeEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 4.33k | end() { | 380 | 4.33k | auto *refs = getRefs<Request>(); | 381 | 4.33k | return refs->end(); | 382 | 4.33k | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 830 | end() { | 380 | 830 | auto *refs = getRefs<Request>(); | 381 | 830 | return refs->end(); | 382 | 830 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 813 | end() { | 380 | 813 | auto *refs = getRefs<Request>(); | 381 | 813 | return refs->end(); | 382 | 813 | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21SuperclassDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 41.1k | end() { | 380 | 41.1k | auto *refs = getRefs<Request>(); | 381 | 41.1k | return refs->end(); | 382 | 41.1k | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30IsCallAsFunctionNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 12 | end() { | 380 | 12 | auto *refs = getRefs<Request>(); | 381 | 12 | return refs->end(); | 382 | 12 | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_38HasDynamicMemberLookupAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 3.36k | end() { | 380 | 3.36k | auto *refs = getRefs<Request>(); | 381 | 3.36k | return refs->end(); | 382 | 3.36k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26LookupInfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.03k | end() { | 380 | 1.03k | auto *refs = getRefs<Request>(); | 381 | 1.03k | return refs->end(); | 382 | 1.03k | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27LookupPrefixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28LookupPostfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28LookupPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 396 | end() { | 380 | 396 | auto *refs = getRefs<Request>(); | 381 | 396 | return refs->end(); | 382 | 396 | } |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23ExprPatternMatchRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30ConditionalRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 69.2k | end() { | 380 | 69.2k | auto *refs = getRefs<Request>(); | 381 | 69.2k | return refs->end(); | 382 | 69.2k | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18TypeWitnessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28AssociatedConformanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19ValueWitnessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 11.2k | end() { | 380 | 11.2k | auto *refs = getRefs<Request>(); | 381 | 11.2k | return refs->end(); | 382 | 11.2k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences3endINS_37LookupAllConformancesInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 4.44k | end() { | 380 | 4.44k | auto *refs = getRefs<Request>(); | 381 | 4.44k | return refs->end(); | 382 | 4.44k | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator17RequestReferences3endINS_17RawCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Stmt.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24IsSingleValueStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 8 | end() { | 380 | 8 | auto *refs = getRefs<Request>(); | 381 | 8 | return refs->end(); | 382 | 8 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18BreakTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Stmt.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ContinueTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 12 | end() { | 380 | 12 | auto *refs = getRefs<Request>(); | 381 | 12 | return refs->end(); | 382 | 12 | } |
Unexecuted instantiation: Type.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20IsNoncopyableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckRequests.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18RequirementRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 187 | end() { | 380 | 187 | auto *refs = getRefs<Request>(); | 381 | 187 | return refs->end(); | 382 | 187 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_40ExpandChildTypeRefinementContextsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 3.27k | end() { | 380 | 3.27k | auto *refs = getRefs<Request>(); | 381 | 3.27k | return refs->end(); | 382 | 3.27k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv |
383 | | |
384 | | template <typename Request> |
385 | 34.0k | void insert(Request req, std::vector<DependencyCollector::Reference> val) { |
386 | 34.0k | auto *refs = getRefs<Request>(); |
387 | 34.0k | refs->insert({RequestKey<Request>(std::move(req)), |
388 | 34.0k | std::move(val)}); |
389 | 34.0k | } Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18OptimizedIRRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_20USRGenerationRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 8 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 8 | auto *refs = getRefs<Request>(); | 387 | 8 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 8 | std::move(val)}); | 389 | 8 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24IDEInspectionFileRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24ConstantValueInfoRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26CustomRefCountingOperationEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22SymbolSourceMapRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_12IRGenRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 49 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 49 | auto *refs = getRefs<Request>(); | 387 | 49 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 49 | std::move(val)}); | 389 | 49 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_17LoweredSILRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_20PublicSymbolsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18GenerateTBDRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_13APIGenRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_18ASTLoweringRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 78 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 78 | auto *refs = getRefs<Request>(); | 387 | 78 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 78 | std::move(val)}); | 389 | 78 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21ParseSILModuleRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_28TangentStoredPropertyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 88 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 88 | auto *refs = getRefs<Request>(); | 387 | 88 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 88 | std::move(val)}); | 389 | 88 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25ExecuteSILPipelineRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26ResolveProtocolNameRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28ProvideDefaultImplForRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_29CollectOverriddenDeclsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23IsDeclApplicableRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24TypeRelationCheckRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_37RootTypeOfKeypathDynamicMemberRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28PreCheckResultBuilderRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_32CompareDeclSpecializationRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 56 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 56 | auto *refs = getRefs<Request>(); | 387 | 56 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 56 | std::move(val)}); | 389 | 56 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_29EnumElementExprPatternRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_25IsDeclRefinementOfRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 287 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 287 | auto *refs = getRefs<Request>(); | 387 | 287 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 287 | std::move(val)}); | 389 | 287 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_35HasUserDefinedDesignatedInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 365 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 365 | auto *refs = getRefs<Request>(); | 387 | 365 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 365 | std::move(val)}); | 389 | 365 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_44AreAllStoredPropertiesDefaultInitableRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 6 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 6 | auto *refs = getRefs<Request>(); | 387 | 6 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 6 | std::move(val)}); | 389 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31ClosureHasExplicitResultRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28IsCCompatibleFuncDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_35DistributedModuleIsAvailableRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31CheckDistributedFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_30ValidatePrecedenceGroupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 432 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 432 | auto *refs = getRefs<Request>(); | 387 | 432 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 432 | std::move(val)}); | 389 | 432 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_29SynthesizeMainFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_34TypeCheckObjCImplementationRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_25CheckRedeclarationRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 3.00k | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 3.00k | auto *refs = getRefs<Request>(); | 387 | 3.00k | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 3.00k | std::move(val)}); | 389 | 3.00k | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22ApplyAccessNoteRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_27DirectOperatorLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_34DirectPrecedenceGroupLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_18DefaultTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 166 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 166 | auto *refs = getRefs<Request>(); | 387 | 166 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 166 | std::move(val)}); | 389 | 166 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30ExternalMacroDefinitionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25CompilerPluginLoadRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_18PatternTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 438 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 438 | auto *refs = getRefs<Request>(); | 387 | 438 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 438 | std::move(val)}); | 389 | 438 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_20InheritedTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 582 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 582 | auto *refs = getRefs<Request>(); | 387 | 582 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 582 | std::move(val)}); | 389 | 582 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_24CustomAttrNominalRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 25 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 25 | auto *refs = getRefs<Request>(); | 387 | 25 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 25 | std::move(val)}); | 389 | 25 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_21CustomAttrTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 25 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 25 | auto *refs = getRefs<Request>(); | 387 | 25 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 25 | std::move(val)}); | 389 | 25 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25PreCheckReturnStmtRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_27PreCheckFunctionBodyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_32PropertyWrapperLValuenessRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 20 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 20 | auto *refs = getRefs<Request>(); | 387 | 20 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 20 | std::move(val)}); | 389 | 20 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_20ExpandAccessorMacrosEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 20 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 20 | auto *refs = getRefs<Request>(); | 387 | 20 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 20 | std::move(val)}); | 389 | 20 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18ResolveTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_26TypeCheckSourceFileRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 63 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 63 | auto *refs = getRefs<Request>(); | 387 | 63 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 63 | std::move(val)}); | 389 | 63 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_49CheckInconsistentImplementationOnlyImportsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_38CheckInconsistentSPIOnlyImportsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36CheckInconsistentAccessLevelOnImportEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_41CheckInconsistentWeakLinkedImportsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_31InferredGenericSignatureRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 360 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 360 | auto *refs = getRefs<Request>(); | 387 | 360 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 360 | std::move(val)}); | 389 | 360 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28TypeCheckASTNodeAtLocRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_37ObjCInterfaceAndImplementationRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23ClangRecordMemberLookupEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26ClangCategoryLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18CxxRecordSemanticsEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18IsSafeUseOfCxxDeclEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_20CxxRecordAsSwiftTypeEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30IDEInspectionSecondPassRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31TypeDeclsFromWhereClauseRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22HasIsolatedSelfRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24ClangDirectLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24ResolveMacroConformancesEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30TypeEraserHasViableInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28ResolveTypeEraserTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31ResolveRawLayoutLikeTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31SpecializeAttrTargetDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36SerializeAttrGenericSignatureRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_39DifferentiableAttributeTypeCheckRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 292 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 292 | auto *refs = getRefs<Request>(); | 387 | 292 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 292 | std::move(val)}); | 389 | 292 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_33DerivativeAttrOriginalDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 4 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 4 | auto *refs = getRefs<Request>(); | 387 | 4 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 4 | std::move(val)}); | 389 | 4 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_29ImplementsAttrProtocolRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 3 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 3 | auto *refs = getRefs<Request>(); | 387 | 3 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 3 | std::move(val)}); | 389 | 3 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_38InitAccessorReferencedVariablesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_33SemanticAvailableRangeAttrRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30SemanticUnavailableAttrRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_27ExpandMemberAttributeMacrosEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_22ExpandPeerMacroRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 20 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 20 | auto *refs = getRefs<Request>(); | 387 | 20 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 20 | std::move(val)}); | 389 | 20 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31ExpandMacroExpansionDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_19ResolveMacroRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 25 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 25 | auto *refs = getRefs<Request>(); | 387 | 25 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 25 | std::move(val)}); | 389 | 25 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_27GlobalActorAttributeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 20 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 20 | auto *refs = getRefs<Request>(); | 387 | 20 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 20 | std::move(val)}); | 389 | 20 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_17ThrownTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_28IsAccessorTransparentRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 45 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 45 | auto *refs = getRefs<Request>(); | 387 | 45 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 45 | std::move(val)}); | 389 | 45 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23GenericParamListRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_23GenericSignatureRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 812 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 812 | auto *refs = getRefs<Request>(); | 387 | 812 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 812 | std::move(val)}); | 389 | 812 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25ScopedImportLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_22ExtendedNominalRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 95 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 95 | auto *refs = getRefs<Request>(); | 387 | 95 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 95 | std::move(val)}); | 389 | 95 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_31DefaultAndMaxAccessLevelRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_19ExtendedTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 92 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 92 | auto *refs = getRefs<Request>(); | 387 | 92 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 92 | std::move(val)}); | 389 | 92 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_26PatternBindingEntryRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 662 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 662 | auto *refs = getRefs<Request>(); | 387 | 662 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 662 | std::move(val)}); | 389 | 662 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_30RequiresOpaqueAccessorsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 22 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 22 | auto *refs = getRefs<Request>(); | 387 | 22 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 22 | std::move(val)}); | 389 | 22 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_36RequiresOpaqueModifyCoroutineRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 98 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 98 | auto *refs = getRefs<Request>(); | 387 | 98 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 98 | std::move(val)}); | 389 | 98 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_25SynthesizeAccessorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 449 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 449 | auto *refs = getRefs<Request>(); | 387 | 449 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 449 | std::move(val)}); | 389 | 449 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_30IsABICompatibleOverrideRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 19 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 19 | auto *refs = getRefs<Request>(); | 387 | 19 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 19 | std::move(val)}); | 389 | 19 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_23IsGetterMutatingRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 40 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 40 | auto *refs = getRefs<Request>(); | 387 | 40 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 40 | std::move(val)}); | 389 | 40 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_23IsSetterMutatingRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 43 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 43 | auto *refs = getRefs<Request>(); | 387 | 43 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 43 | std::move(val)}); | 389 | 43 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_26OpaqueReadOwnershipRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 370 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 370 | auto *refs = getRefs<Request>(); | 387 | 370 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 370 | std::move(val)}); | 389 | 370 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_26LocalDiscriminatorsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 6 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 6 | auto *refs = getRefs<Request>(); | 387 | 6 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 6 | std::move(val)}); | 389 | 6 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_22OverriddenDeclsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 112 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 112 | auto *refs = getRefs<Request>(); | 387 | 112 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 112 | std::move(val)}); | 389 | 112 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23OpaqueResultTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_13IsObjCRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 594 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 594 | auto *refs = getRefs<Request>(); | 387 | 594 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 594 | std::move(val)}); | 389 | 594 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_14IsFinalRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 14 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 14 | auto *refs = getRefs<Request>(); | 387 | 14 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 14 | std::move(val)}); | 389 | 14 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18IsEscapableRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_16IsDynamicRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 478 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 478 | auto *refs = getRefs<Request>(); | 387 | 478 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 478 | std::move(val)}); | 389 | 478 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30DynamicallyReplacedDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36IsImplicitlyUnwrappedOptionalRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_20InterfaceTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 4.26k | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 4.26k | auto *refs = getRefs<Request>(); | 387 | 4.26k | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 4.26k | std::move(val)}); | 389 | 4.26k | } |
_ZN5swift9evaluator17RequestReferences6insertINS_18AccessLevelRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 5 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 5 | auto *refs = getRefs<Request>(); | 387 | 5 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 5 | std::move(val)}); | 389 | 5 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31HasNoncopyableAnnotationRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_23StoredPropertiesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 10 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 10 | auto *refs = getRefs<Request>(); | 387 | 10 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 10 | std::move(val)}); | 389 | 10 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_29InitAccessorPropertiesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 6 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 6 | auto *refs = getRefs<Request>(); | 387 | 6 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 6 | std::move(val)}); | 389 | 6 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_31MemberwiseInitPropertiesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 6 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 6 | auto *refs = getRefs<Request>(); | 387 | 6 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 6 | std::move(val)}); | 389 | 6 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_40StoredPropertiesAndMissingMembersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 4 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 4 | auto *refs = getRefs<Request>(); | 387 | 4 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 4 | std::move(val)}); | 389 | 4 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_30PropertyWrapperTypeInfoRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 10 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 10 | auto *refs = getRefs<Request>(); | 387 | 10 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 10 | std::move(val)}); | 389 | 10 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_14IsActorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 411 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 411 | auto *refs = getRefs<Request>(); | 387 | 411 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 411 | std::move(val)}); | 389 | 411 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_25IsDistributedActorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 412 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 412 | auto *refs = getRefs<Request>(); | 387 | 412 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 412 | std::move(val)}); | 389 | 412 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_21UnderlyingTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 46 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 46 | auto *refs = getRefs<Request>(); | 387 | 46 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 46 | std::move(val)}); | 389 | 46 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21StructuralTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28DefaultDefinitionTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18EnumRawTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_24HasMemberwiseInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 282 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 282 | auto *refs = getRefs<Request>(); | 387 | 282 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 282 | std::move(val)}); | 389 | 282 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_31SynthesizeMemberwiseInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 184 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 184 | auto *refs = getRefs<Request>(); | 387 | 184 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 184 | std::move(val)}); | 389 | 184 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_37ResolveEffectiveMemberwiseInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 179 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 179 | auto *refs = getRefs<Request>(); | 387 | 179 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 179 | std::move(val)}); | 389 | 179 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_21HasDefaultInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 365 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 365 | auto *refs = getRefs<Request>(); | 387 | 365 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 365 | std::move(val)}); | 389 | 365 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_28SynthesizeDefaultInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 20 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 20 | auto *refs = getRefs<Request>(); | 387 | 20 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 20 | std::move(val)}); | 389 | 20 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26GlobalActorInstanceRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_20GetDestructorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21IsDefaultActorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_39HasMissingDesignatedInitializersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_37InheritsSuperclassInitializersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 14 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 14 | auto *refs = getRefs<Request>(); | 387 | 14 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 14 | std::move(val)}); | 389 | 14 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_25ClassAncestryFlagsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 65 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 65 | auto *refs = getRefs<Request>(); | 387 | 65 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 65 | std::move(val)}); | 389 | 65 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26HasCircularRawValueRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_25InheritedProtocolsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 7 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 7 | auto *refs = getRefs<Request>(); | 387 | 7 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 7 | std::move(val)}); | 389 | 7 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_27ProtocolRequirementsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 24 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 24 | auto *refs = getRefs<Request>(); | 387 | 24 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 24 | std::move(val)}); | 389 | 24 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_21SuperclassTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 65 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 65 | auto *refs = getRefs<Request>(); | 387 | 65 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 65 | std::move(val)}); | 389 | 65 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_28ProtocolRequiresClassRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 6 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 6 | auto *refs = getRefs<Request>(); | 387 | 6 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 6 | std::move(val)}); | 389 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_32ExistentialConformsToSelfRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_42HasSelfOrAssociatedTypeRequirementsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 1 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 1 | auto *refs = getRefs<Request>(); | 387 | 1 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 1 | std::move(val)}); | 389 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_29PrimaryAssociatedTypesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_29StructuralRequirementsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 25 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 25 | auto *refs = getRefs<Request>(); | 387 | 25 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 25 | std::move(val)}); | 389 | 25 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_28TypeAliasRequirementsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 24 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 24 | auto *refs = getRefs<Request>(); | 387 | 24 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 24 | std::move(val)}); | 389 | 24 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_27ProtocolDependenciesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 25 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 25 | auto *refs = getRefs<Request>(); | 387 | 25 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 25 | std::move(val)}); | 389 | 25 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_27RequirementSignatureRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 25 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 25 | auto *refs = getRefs<Request>(); | 387 | 25 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 25 | std::move(val)}); | 389 | 25 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_36HasCircularInheritedProtocolsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 16 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 16 | auto *refs = getRefs<Request>(); | 387 | 16 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 16 | std::move(val)}); | 389 | 16 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_17HasStorageRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 20 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 20 | auto *refs = getRefs<Request>(); | 387 | 20 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 20 | std::move(val)}); | 389 | 20 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_22StorageImplInfoRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 24 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 24 | auto *refs = getRefs<Request>(); | 387 | 24 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 24 | std::move(val)}); | 389 | 24 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24SetterAccessLevelRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_22HasInitAccessorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 20 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 20 | auto *refs = getRefs<Request>(); | 387 | 20 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 20 | std::move(val)}); | 389 | 20 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_27DefaultInitializerIsolationEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 1.36k | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 1.36k | auto *refs = getRefs<Request>(); | 387 | 1.36k | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 1.36k | std::move(val)}); | 389 | 1.36k | } |
_ZN5swift9evaluator17RequestReferences6insertINS_20NamingPatternRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 259 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 259 | auto *refs = getRefs<Request>(); | 387 | 259 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 259 | std::move(val)}); | 389 | 259 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_21ParamSpecifierRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 8 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 8 | auto *refs = getRefs<Request>(); | 387 | 8 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 8 | std::move(val)}); | 389 | 8 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_31AttachedPropertyWrappersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 20 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 20 | auto *refs = getRefs<Request>(); | 387 | 20 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 20 | std::move(val)}); | 389 | 20 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_34AttachedPropertyWrapperTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 25 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 25 | auto *refs = getRefs<Request>(); | 387 | 25 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 25 | std::move(val)}); | 389 | 25 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_41PropertyWrapperBackingPropertyTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 20 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 20 | auto *refs = getRefs<Request>(); | 387 | 20 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 20 | std::move(val)}); | 389 | 20 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_40PropertyWrapperAuxiliaryVariablesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 20 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 20 | auto *refs = getRefs<Request>(); | 387 | 20 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 20 | std::move(val)}); | 389 | 20 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_37PropertyWrapperInitializerInfoRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 20 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 20 | auto *refs = getRefs<Request>(); | 387 | 20 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 20 | std::move(val)}); | 389 | 20 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_32PropertyWrapperMutabilityRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 40 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 40 | auto *refs = getRefs<Request>(); | 387 | 40 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 40 | std::move(val)}); | 389 | 40 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26LazyStoragePropertyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_33DefaultArgumentInitContextRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_26DefaultArgumentExprRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 22 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 22 | auto *refs = getRefs<Request>(); | 387 | 22 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 22 | std::move(val)}); | 389 | 22 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26DefaultArgumentTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_24ResultBuilderTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 592 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 592 | auto *refs = getRefs<Request>(); | 387 | 592 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 592 | std::move(val)}); | 389 | 592 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_28AttachedResultBuilderRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 20 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 20 | auto *refs = getRefs<Request>(); | 387 | 20 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 20 | std::move(val)}); | 389 | 20 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_17ResultTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 909 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 909 | auto *refs = getRefs<Request>(); | 387 | 909 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 909 | std::move(val)}); | 389 | 909 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18RenamedDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_32ParseAbstractFunctionBodyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 1.27k | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 1.27k | auto *refs = getRefs<Request>(); | 387 | 1.27k | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 1.27k | std::move(val)}); | 389 | 1.27k | } |
_ZN5swift9evaluator17RequestReferences6insertINS_28TypeCheckFunctionBodyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2.17k | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2.17k | auto *refs = getRefs<Request>(); | 387 | 2.17k | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2.17k | std::move(val)}); | 389 | 2.17k | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28IsFunctionBodySkippedRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_26NeedsNewVTableEntryRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 92 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 92 | auto *refs = getRefs<Request>(); | 387 | 92 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 92 | std::move(val)}); | 389 | 92 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_23FunctionOperatorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 191 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 191 | auto *refs = getRefs<Request>(); | 387 | 191 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 191 | std::move(val)}); | 389 | 191 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_15IsStaticRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_19SimpleDidSetRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21SelfAccessKindRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_20EnumRawValuesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_15InitKindRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_19BodyInitKindRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 46 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 46 | auto *refs = getRefs<Request>(); | 387 | 46 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 46 | std::move(val)}); | 389 | 46 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30OperatorPrecedenceGroupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_21ActorIsolationRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 4.64k | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 4.64k | auto *refs = getRefs<Request>(); | 387 | 4.64k | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 4.64k | std::move(val)}); | 389 | 4.64k | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31ExpandMacroExpansionExprRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22MacroDefinitionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28ResolveImplicitMemberRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_26FragileFunctionKindRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_19ParseMembersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_17ABIMembersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 267 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 267 | auto *refs = getRefs<Request>(); | 387 | 267 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 267 | std::move(val)}); | 389 | 267 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_17AllMembersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 134 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 134 | auto *refs = getRefs<Request>(); | 387 | 134 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 134 | std::move(val)}); | 389 | 134 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_48GetDistributedActorArgumentDecodingMethodRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_43GetDistributedActorInvocationDecoderRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26GetDistributedThunkRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_40GetDistributedActorSystemPropertyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36GetDistributedActorIDPropertyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_27SemanticBriefCommentRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36PolymorphicEffectRequirementsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28PolymorphicEffectKindRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_27ConformanceHasEffectRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_31CallerSideDefaultArgExprRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2.48k | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2.48k | auto *refs = getRefs<Request>(); | 387 | 2.48k | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2.48k | std::move(val)}); | 389 | 2.48k | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21ClosureEffectsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_31AbstractGenericSignatureRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 184 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 184 | auto *refs = getRefs<Request>(); | 387 | 184 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 184 | std::move(val)}); | 389 | 184 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22IsNonUserModuleRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28ModuleImplicitImportsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25PrimarySourceFilesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26MangleLocalTypeDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21ExpandExtensionMacrosEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_39ImplicitKnownProtocolConformanceRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 210 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 210 | auto *refs = getRefs<Request>(); | 387 | 210 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 210 | std::move(val)}); | 389 | 210 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_41GetDistributedActorImplicitCodableRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22ParseSourceFileRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_29HasImportsMatchingFlagRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_16SPIGroupsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25ModuleLibraryLevelRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25ParseTopLevelDeclsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25ExportedSourceFileRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22GetSourceFileAsyncNodeEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_32LookupConformanceInModuleRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21LookupInModuleRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_35ExpandSynthesizedMemberMacroRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_40PotentialMacroExpansionsInContextRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 6 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 6 | auto *refs = getRefs<Request>(); | 387 | 6 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 6 | std::move(val)}); | 389 | 6 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_21SuperclassDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 187 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 187 | auto *refs = getRefs<Request>(); | 387 | 187 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 187 | std::move(val)}); | 389 | 187 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_30IsCallAsFunctionNominalRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 3 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 3 | auto *refs = getRefs<Request>(); | 387 | 3 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 3 | std::move(val)}); | 389 | 3 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_38HasDynamicMemberLookupAttributeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 345 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 345 | auto *refs = getRefs<Request>(); | 387 | 345 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 345 | std::move(val)}); | 389 | 345 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_34HasDynamicCallableAttributeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_32SelfBoundsFromWhereClauseRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_37SelfBoundsFromGenericSignatureRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24UnqualifiedLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_19DirectLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24CXXNamespaceMemberLookupEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22AnyObjectLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22QualifiedLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28ModuleQualifiedLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36UnderlyingTypeDeclsReferencedRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31InheritedDeclsReferencedRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_26LookupInfixOperatorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 154 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 154 | auto *refs = getRefs<Request>(); | 387 | 154 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 154 | std::move(val)}); | 389 | 154 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_27LookupPrefixOperatorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28LookupPostfixOperatorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_28LookupPrecedenceGroupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 36 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 36 | auto *refs = getRefs<Request>(); | 387 | 36 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 36 | std::move(val)}); | 389 | 36 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23ExprPatternMatchRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_30ConditionalRequirementsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 73 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 73 | auto *refs = getRefs<Request>(); | 387 | 73 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 73 | std::move(val)}); | 389 | 73 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_18TypeWitnessRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 62 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 62 | auto *refs = getRefs<Request>(); | 387 | 62 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 62 | std::move(val)}); | 389 | 62 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_28AssociatedConformanceRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 610 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 610 | auto *refs = getRefs<Request>(); | 387 | 610 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 610 | std::move(val)}); | 389 | 610 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_19ValueWitnessRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 3 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 3 | auto *refs = getRefs<Request>(); | 387 | 3 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 3 | std::move(val)}); | 389 | 3 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_37LookupAllConformancesInContextRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 138 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 138 | auto *refs = getRefs<Request>(); | 387 | 138 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 138 | std::move(val)}); | 389 | 138 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_17RawCommentRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24IsSingleValueStmtRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18BreakTargetRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21ContinueTargetRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_20IsNoncopyableRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_18RequirementRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 409 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 409 | auto *refs = getRefs<Request>(); | 387 | 409 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 409 | std::move(val)}); | 389 | 409 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_40ExpandChildTypeRefinementContextsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE |
390 | | |
391 | | template <typename Request> |
392 | 6.34k | void erase(Request req) { |
393 | 6.34k | auto *refs = getRefs<Request>(); |
394 | 6.34k | refs->erase(RequestKey<Request>(std::move(req))); |
395 | 6.34k | } Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences5eraseINS_26LocalDiscriminatorsRequestEEEvT_ _ZN5swift9evaluator17RequestReferences5eraseINS_19BodyInitKindRequestEEEvT_ Line | Count | Source | 392 | 6.34k | void erase(Request req) { | 393 | 6.34k | auto *refs = getRefs<Request>(); | 394 | 6.34k | refs->erase(RequestKey<Request>(std::move(req))); | 395 | 6.34k | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences5eraseINS_25ParseTopLevelDeclsRequestEEEvT_ |
396 | | |
397 | 0 | void clear() { |
398 | 0 | #define SWIFT_TYPEID_ZONE(Name, Id) Name##ZoneRefs.clear(); |
399 | 0 | #include "swift/Basic/TypeIDZones.def" |
400 | 0 | #undef SWIFT_TYPEID_ZONE |
401 | 0 | } |
402 | | }; |
403 | | |
404 | | } // end namespace evaluator |
405 | | |
406 | | } // end namespace swift |
407 | | |
408 | | namespace llvm { |
409 | | |
410 | | template <typename Request, typename Info> |
411 | | struct DenseMapInfo<swift::evaluator::RequestKey<Request, Info>> { |
412 | | using RequestKey = swift::evaluator::RequestKey<Request, Info>; |
413 | 43.5M | static inline RequestKey getEmptyKey() { |
414 | 43.5M | return RequestKey::getEmpty(); |
415 | 43.5M | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18OptimizedIRRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE11getEmptyKeyEv ClangSyntaxPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 50.9k | static inline RequestKey getEmptyKey() { | 414 | 50.9k | return RequestKey::getEmpty(); | 415 | 50.9k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Frontend.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IDEInspectionFileRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ConstExtract.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ConstantValueInfoRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: GenClass.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: GenDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: GenDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: GenEnum.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: GenHeap.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: GenMeta.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE11getEmptyKeyEv IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_12IRGenRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 245 | static inline RequestKey getEmptyKey() { | 414 | 245 | return RequestKey::getEmpty(); | 415 | 245 | } |
Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17LoweredSILRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20PublicSymbolsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18GenerateTBDRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13APIGenRequestEvEEvE11getEmptyKeyEv SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 390 | static inline RequestKey getEmptyKey() { | 414 | 390 | return RequestKey::getEmpty(); | 415 | 390 | } |
Unexecuted instantiation: SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParseSILModuleRequestEvEEvE11getEmptyKeyEv Common.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.22k | static inline RequestKey getEmptyKey() { | 414 | 1.22k | return RequestKey::getEmpty(); | 415 | 1.22k | } |
Unexecuted instantiation: PassManager.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExecuteSILPipelineRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDERequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ResolveProtocolNameRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29CollectOverriddenDeclsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24TypeRelationCheckRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Serialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ParseSIL.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: BuilderTransform.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PreCheckResultBuilderRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: CSApply.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE11getEmptyKeyEv CSRanking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32CompareDeclSpecializationRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 88.0k | static inline RequestKey getEmptyKey() { | 414 | 88.0k | return RequestKey::getEmpty(); | 415 | 88.0k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29EnumElementExprPatternRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE11getEmptyKeyEv CSStep.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDeclRefinementOfRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 18.9k | static inline RequestKey getEmptyKey() { | 414 | 18.9k | return RequestKey::getEmpty(); | 415 | 18.9k | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE11getEmptyKeyEv CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35HasUserDefinedDesignatedInitRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 7.81k | static inline RequestKey getEmptyKey() { | 414 | 7.81k | return RequestKey::getEmpty(); | 415 | 7.81k | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_44AreAllStoredPropertiesDefaultInitableRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.80k | static inline RequestKey getEmptyKey() { | 414 | 2.80k | return RequestKey::getEmpty(); | 415 | 2.80k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE11getEmptyKeyEv ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ClosureHasExplicitResultRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.56k | static inline RequestKey getEmptyKey() { | 414 | 2.56k | return RequestKey::getEmpty(); | 415 | 2.56k | } |
DerivedConformanceDifferentiable.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.05k | static inline RequestKey getEmptyKey() { | 414 | 1.05k | return RequestKey::getEmpty(); | 415 | 1.05k | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: MiscDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsCCompatibleFuncDeclRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE11getEmptyKeyEv TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35DistributedModuleIsAvailableRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 52 | static inline RequestKey getEmptyKey() { | 414 | 52 | return RequestKey::getEmpty(); | 415 | 52 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CheckDistributedFunctionRequestEvEEvE11getEmptyKeyEv TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ValidatePrecedenceGroupRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 16.0k | static inline RequestKey getEmptyKey() { | 414 | 16.0k | return RequestKey::getEmpty(); | 415 | 16.0k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE11getEmptyKeyEv TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 37.4k | static inline RequestKey getEmptyKey() { | 414 | 37.4k | return RequestKey::getEmpty(); | 415 | 37.4k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34TypeCheckObjCImplementationRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE11getEmptyKeyEv TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CheckRedeclarationRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 13.5k | static inline RequestKey getEmptyKey() { | 414 | 13.5k | return RequestKey::getEmpty(); | 415 | 13.5k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE11getEmptyKeyEv TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ApplyAccessNoteRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 827k | static inline RequestKey getEmptyKey() { | 414 | 827k | return RequestKey::getEmpty(); | 415 | 827k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE11getEmptyKeyEv TypeCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18DefaultTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 163k | static inline RequestKey getEmptyKey() { | 414 | 163k | return RequestKey::getEmpty(); | 415 | 163k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31HasNoncopyableAnnotationRequestEvEEvE11getEmptyKeyEv TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 40 | static inline RequestKey getEmptyKey() { | 414 | 40 | return RequestKey::getEmpty(); | 415 | 40 | } |
TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CompilerPluginLoadRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 24 | static inline RequestKey getEmptyKey() { | 414 | 24 | return RequestKey::getEmpty(); | 415 | 24 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE11getEmptyKeyEv TypeCheckPattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18PatternTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 105k | static inline RequestKey getEmptyKey() { | 414 | 105k | return RequestKey::getEmpty(); | 415 | 105k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE11getEmptyKeyEv TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.59k | static inline RequestKey getEmptyKey() { | 414 | 1.59k | return RequestKey::getEmpty(); | 415 | 1.59k | } |
TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 5.74k | static inline RequestKey getEmptyKey() { | 414 | 5.74k | return RequestKey::getEmpty(); | 415 | 5.74k | } |
TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 56 | static inline RequestKey getEmptyKey() { | 414 | 56 | return RequestKey::getEmpty(); | 415 | 56 | } |
TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 83.7k | static inline RequestKey getEmptyKey() { | 414 | 83.7k | return RequestKey::getEmpty(); | 415 | 83.7k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27PreCheckFunctionBodyRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE11getEmptyKeyEv TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperLValuenessRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 304 | static inline RequestKey getEmptyKey() { | 414 | 304 | return RequestKey::getEmpty(); | 415 | 304 | } |
TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20ExpandAccessorMacrosEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 118k | static inline RequestKey getEmptyKey() { | 414 | 118k | return RequestKey::getEmpty(); | 415 | 118k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ResolveTypeRequestEvEEvE11getEmptyKeyEv TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26TypeCheckSourceFileRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 415 | static inline RequestKey getEmptyKey() { | 414 | 415 | return RequestKey::getEmpty(); | 415 | 415 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49CheckInconsistentImplementationOnlyImportsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.58k | static inline RequestKey getEmptyKey() { | 414 | 1.58k | return RequestKey::getEmpty(); | 415 | 1.58k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38CheckInconsistentSPIOnlyImportsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.98k | static inline RequestKey getEmptyKey() { | 414 | 2.98k | return RequestKey::getEmpty(); | 415 | 2.98k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36CheckInconsistentAccessLevelOnImportEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.98k | static inline RequestKey getEmptyKey() { | 414 | 2.98k | return RequestKey::getEmpty(); | 415 | 2.98k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41CheckInconsistentWeakLinkedImportsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.58k | static inline RequestKey getEmptyKey() { | 414 | 1.58k | return RequestKey::getEmpty(); | 415 | 1.58k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 33.6k | static inline RequestKey getEmptyKey() { | 414 | 33.6k | return RequestKey::getEmpty(); | 415 | 33.6k | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckASTNodeAtLocRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE11getEmptyKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 323k | static inline RequestKey getEmptyKey() { | 414 | 323k | return RequestKey::getEmpty(); | 415 | 323k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ObjCInterfaceAndImplementationRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE11getEmptyKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ClangCategoryLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportName.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsSafeUseOfCxxDeclEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20CxxRecordAsSwiftTypeEvEEvE11getEmptyKeyEv Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IDEInspectionSecondPassRequestEvEEvE11getEmptyKeyEv Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 145 | static inline RequestKey getEmptyKey() { | 414 | 145 | return RequestKey::getEmpty(); | 415 | 145 | } |
Unexecuted instantiation: ParseRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: AccessRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31TypeDeclsFromWhereClauseRequestEvEEvE11getEmptyKeyEv ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 320k | static inline RequestKey getEmptyKey() { | 414 | 320k | return RequestKey::getEmpty(); | 415 | 320k | } |
ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 16 | static inline RequestKey getEmptyKey() { | 414 | 16 | return RequestKey::getEmpty(); | 415 | 16 | } |
ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 16 | static inline RequestKey getEmptyKey() { | 414 | 16 | return RequestKey::getEmpty(); | 415 | 16 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEEvE11getEmptyKeyEv ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 16 | static inline RequestKey getEmptyKey() { | 414 | 16 | return RequestKey::getEmpty(); | 415 | 16 | } |
ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 21 | static inline RequestKey getEmptyKey() { | 414 | 21 | return RequestKey::getEmpty(); | 415 | 21 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ASTPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE11getEmptyKeyEv Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 92 | static inline RequestKey getEmptyKey() { | 414 | 92 | return RequestKey::getEmpty(); | 415 | 92 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30TypeEraserHasViableInitRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveTypeEraserTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ResolveRawLayoutLikeTypeRequestEvEEvE11getEmptyKeyEv Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SpecializeAttrTargetDeclRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 6.09k | static inline RequestKey getEmptyKey() { | 414 | 6.09k | return RequestKey::getEmpty(); | 415 | 6.09k | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36SerializeAttrGenericSignatureRequestEvEEvE11getEmptyKeyEv Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39DifferentiableAttributeTypeCheckRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 3.29k | static inline RequestKey getEmptyKey() { | 414 | 3.29k | return RequestKey::getEmpty(); | 415 | 3.29k | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DerivativeAttrOriginalDeclRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 5.35k | static inline RequestKey getEmptyKey() { | 414 | 5.35k | return RequestKey::getEmpty(); | 415 | 5.35k | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29ImplementsAttrProtocolRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.10k | static inline RequestKey getEmptyKey() { | 414 | 1.10k | return RequestKey::getEmpty(); | 415 | 1.10k | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38InitAccessorReferencedVariablesRequestEvEEvE11getEmptyKeyEv Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33SemanticAvailableRangeAttrRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.63k | static inline RequestKey getEmptyKey() { | 414 | 2.63k | return RequestKey::getEmpty(); | 415 | 2.63k | } |
Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30SemanticUnavailableAttrRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 477k | static inline RequestKey getEmptyKey() { | 414 | 477k | return RequestKey::getEmpty(); | 415 | 477k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ExpandMemberAttributeMacrosEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 3.01M | static inline RequestKey getEmptyKey() { | 414 | 3.01M | return RequestKey::getEmpty(); | 415 | 3.01M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.16M | static inline RequestKey getEmptyKey() { | 414 | 1.16M | return RequestKey::getEmpty(); | 415 | 1.16M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.32k | static inline RequestKey getEmptyKey() { | 414 | 1.32k | return RequestKey::getEmpty(); | 415 | 1.32k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 3.79M | static inline RequestKey getEmptyKey() { | 414 | 3.79M | return RequestKey::getEmpty(); | 415 | 3.79M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ThrownTypeRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsAccessorTransparentRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 127 | static inline RequestKey getEmptyKey() { | 414 | 127 | return RequestKey::getEmpty(); | 415 | 127 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericParamListRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericSignatureRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 657k | static inline RequestKey getEmptyKey() { | 414 | 657k | return RequestKey::getEmpty(); | 415 | 657k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ScopedImportLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExtendedNominalRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 327 | static inline RequestKey getEmptyKey() { | 414 | 327 | return RequestKey::getEmpty(); | 415 | 327 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31DefaultAndMaxAccessLevelRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 14 | static inline RequestKey getEmptyKey() { | 414 | 14 | return RequestKey::getEmpty(); | 415 | 14 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 33.6k | static inline RequestKey getEmptyKey() { | 414 | 33.6k | return RequestKey::getEmpty(); | 415 | 33.6k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26PatternBindingEntryRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.57k | static inline RequestKey getEmptyKey() { | 414 | 1.57k | return RequestKey::getEmpty(); | 415 | 1.57k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30RequiresOpaqueAccessorsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.12k | static inline RequestKey getEmptyKey() { | 414 | 1.12k | return RequestKey::getEmpty(); | 415 | 1.12k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36RequiresOpaqueModifyCoroutineRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.23k | static inline RequestKey getEmptyKey() { | 414 | 1.23k | return RequestKey::getEmpty(); | 415 | 1.23k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25SynthesizeAccessorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.29k | static inline RequestKey getEmptyKey() { | 414 | 1.29k | return RequestKey::getEmpty(); | 415 | 1.29k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 32.8k | static inline RequestKey getEmptyKey() { | 414 | 32.8k | return RequestKey::getEmpty(); | 415 | 32.8k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsGetterMutatingRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.73k | static inline RequestKey getEmptyKey() { | 414 | 1.73k | return RequestKey::getEmpty(); | 415 | 1.73k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsSetterMutatingRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.91k | static inline RequestKey getEmptyKey() { | 414 | 1.91k | return RequestKey::getEmpty(); | 415 | 1.91k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26OpaqueReadOwnershipRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 5.00k | static inline RequestKey getEmptyKey() { | 414 | 5.00k | return RequestKey::getEmpty(); | 415 | 5.00k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 64.1k | static inline RequestKey getEmptyKey() { | 414 | 64.1k | return RequestKey::getEmpty(); | 415 | 64.1k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 70.3k | static inline RequestKey getEmptyKey() { | 414 | 70.3k | return RequestKey::getEmpty(); | 415 | 70.3k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 26 | static inline RequestKey getEmptyKey() { | 414 | 26 | return RequestKey::getEmpty(); | 415 | 26 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13IsObjCRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 119k | static inline RequestKey getEmptyKey() { | 414 | 119k | return RequestKey::getEmpty(); | 415 | 119k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsFinalRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 427 | static inline RequestKey getEmptyKey() { | 414 | 427 | return RequestKey::getEmpty(); | 415 | 427 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsEscapableRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16IsDynamicRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 4.93k | static inline RequestKey getEmptyKey() { | 414 | 4.93k | return RequestKey::getEmpty(); | 415 | 4.93k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30DynamicallyReplacedDeclRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 715k | static inline RequestKey getEmptyKey() { | 414 | 715k | return RequestKey::getEmpty(); | 415 | 715k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36IsImplicitlyUnwrappedOptionalRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InterfaceTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 5.31M | static inline RequestKey getEmptyKey() { | 414 | 5.31M | return RequestKey::getEmpty(); | 415 | 5.31M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18AccessLevelRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 102k | static inline RequestKey getEmptyKey() { | 414 | 102k | return RequestKey::getEmpty(); | 415 | 102k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31HasNoncopyableAnnotationRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23StoredPropertiesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 5.97M | static inline RequestKey getEmptyKey() { | 414 | 5.97M | return RequestKey::getEmpty(); | 415 | 5.97M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29InitAccessorPropertiesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 6.32k | static inline RequestKey getEmptyKey() { | 414 | 6.32k | return RequestKey::getEmpty(); | 415 | 6.32k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31MemberwiseInitPropertiesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 4.99k | static inline RequestKey getEmptyKey() { | 414 | 4.99k | return RequestKey::getEmpty(); | 415 | 4.99k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40StoredPropertiesAndMissingMembersRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 7.24k | static inline RequestKey getEmptyKey() { | 414 | 7.24k | return RequestKey::getEmpty(); | 415 | 7.24k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30PropertyWrapperTypeInfoRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.82k | static inline RequestKey getEmptyKey() { | 414 | 1.82k | return RequestKey::getEmpty(); | 415 | 1.82k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsActorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.60M | static inline RequestKey getEmptyKey() { | 414 | 1.60M | return RequestKey::getEmpty(); | 415 | 1.60M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDistributedActorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 478k | static inline RequestKey getEmptyKey() { | 414 | 478k | return RequestKey::getEmpty(); | 415 | 478k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21UnderlyingTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.38k | static inline RequestKey getEmptyKey() { | 414 | 2.38k | return RequestKey::getEmpty(); | 415 | 2.38k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21StructuralTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 90.8k | static inline RequestKey getEmptyKey() { | 414 | 90.8k | return RequestKey::getEmpty(); | 415 | 90.8k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28DefaultDefinitionTypeRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18EnumRawTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 31.4k | static inline RequestKey getEmptyKey() { | 414 | 31.4k | return RequestKey::getEmpty(); | 415 | 31.4k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24HasMemberwiseInitRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 5.68k | static inline RequestKey getEmptyKey() { | 414 | 5.68k | return RequestKey::getEmpty(); | 415 | 5.68k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SynthesizeMemberwiseInitRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.60k | static inline RequestKey getEmptyKey() { | 414 | 2.60k | return RequestKey::getEmpty(); | 415 | 2.60k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ResolveEffectiveMemberwiseInitRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 3.33k | static inline RequestKey getEmptyKey() { | 414 | 3.33k | return RequestKey::getEmpty(); | 415 | 3.33k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21HasDefaultInitRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 6.09k | static inline RequestKey getEmptyKey() { | 414 | 6.09k | return RequestKey::getEmpty(); | 415 | 6.09k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28SynthesizeDefaultInitRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.07k | static inline RequestKey getEmptyKey() { | 414 | 1.07k | return RequestKey::getEmpty(); | 415 | 1.07k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GlobalActorInstanceRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 169 | static inline RequestKey getEmptyKey() { | 414 | 169 | return RequestKey::getEmpty(); | 415 | 169 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20GetDestructorRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21IsDefaultActorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 4.94k | static inline RequestKey getEmptyKey() { | 414 | 4.94k | return RequestKey::getEmpty(); | 415 | 4.94k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39HasMissingDesignatedInitializersRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 8 | static inline RequestKey getEmptyKey() { | 414 | 8 | return RequestKey::getEmpty(); | 415 | 8 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37InheritsSuperclassInitializersRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 52 | static inline RequestKey getEmptyKey() { | 414 | 52 | return RequestKey::getEmpty(); | 415 | 52 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ClassAncestryFlagsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 17.8k | static inline RequestKey getEmptyKey() { | 414 | 17.8k | return RequestKey::getEmpty(); | 415 | 17.8k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.29k | static inline RequestKey getEmptyKey() { | 414 | 2.29k | return RequestKey::getEmpty(); | 415 | 2.29k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25InheritedProtocolsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.40k | static inline RequestKey getEmptyKey() { | 414 | 1.40k | return RequestKey::getEmpty(); | 415 | 1.40k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolRequirementsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.37k | static inline RequestKey getEmptyKey() { | 414 | 1.37k | return RequestKey::getEmpty(); | 415 | 1.37k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.10k | static inline RequestKey getEmptyKey() { | 414 | 1.10k | return RequestKey::getEmpty(); | 415 | 1.10k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProtocolRequiresClassRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 41 | static inline RequestKey getEmptyKey() { | 414 | 41 | return RequestKey::getEmpty(); | 415 | 41 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ExistentialConformsToSelfRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_42HasSelfOrAssociatedTypeRequirementsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 4 | static inline RequestKey getEmptyKey() { | 414 | 4 | return RequestKey::getEmpty(); | 415 | 4 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29PrimaryAssociatedTypesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 7.26k | static inline RequestKey getEmptyKey() { | 414 | 7.26k | return RequestKey::getEmpty(); | 415 | 7.26k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29StructuralRequirementsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.92k | static inline RequestKey getEmptyKey() { | 414 | 1.92k | return RequestKey::getEmpty(); | 415 | 1.92k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeAliasRequirementsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.46k | static inline RequestKey getEmptyKey() { | 414 | 1.46k | return RequestKey::getEmpty(); | 415 | 1.46k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolDependenciesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 171k | static inline RequestKey getEmptyKey() { | 414 | 171k | return RequestKey::getEmpty(); | 415 | 171k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27RequirementSignatureRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 8.53k | static inline RequestKey getEmptyKey() { | 414 | 8.53k | return RequestKey::getEmpty(); | 415 | 8.53k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.75k | static inline RequestKey getEmptyKey() { | 414 | 1.75k | return RequestKey::getEmpty(); | 415 | 1.75k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.14M | static inline RequestKey getEmptyKey() { | 414 | 1.14M | return RequestKey::getEmpty(); | 415 | 1.14M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22StorageImplInfoRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 8.47k | static inline RequestKey getEmptyKey() { | 414 | 8.47k | return RequestKey::getEmpty(); | 415 | 8.47k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24SetterAccessLevelRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasInitAccessorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 434k | static inline RequestKey getEmptyKey() { | 414 | 434k | return RequestKey::getEmpty(); | 415 | 434k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 991k | static inline RequestKey getEmptyKey() { | 414 | 991k | return RequestKey::getEmpty(); | 415 | 991k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20NamingPatternRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.20k | static inline RequestKey getEmptyKey() { | 414 | 1.20k | return RequestKey::getEmpty(); | 415 | 1.20k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParamSpecifierRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 16.8k | static inline RequestKey getEmptyKey() { | 414 | 16.8k | return RequestKey::getEmpty(); | 415 | 16.8k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 3.82M | static inline RequestKey getEmptyKey() { | 414 | 3.82M | return RequestKey::getEmpty(); | 415 | 3.82M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34AttachedPropertyWrapperTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 4.29k | static inline RequestKey getEmptyKey() { | 414 | 4.29k | return RequestKey::getEmpty(); | 415 | 4.29k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 4.29k | static inline RequestKey getEmptyKey() { | 414 | 4.29k | return RequestKey::getEmpty(); | 415 | 4.29k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 306k | static inline RequestKey getEmptyKey() { | 414 | 306k | return RequestKey::getEmpty(); | 415 | 306k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 90.7k | static inline RequestKey getEmptyKey() { | 414 | 90.7k | return RequestKey::getEmpty(); | 415 | 90.7k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperMutabilityRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 122k | static inline RequestKey getEmptyKey() { | 414 | 122k | return RequestKey::getEmpty(); | 415 | 122k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 30 | static inline RequestKey getEmptyKey() { | 414 | 30 | return RequestKey::getEmpty(); | 415 | 30 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DefaultArgumentInitContextRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentExprRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 118 | static inline RequestKey getEmptyKey() { | 414 | 118 | return RequestKey::getEmpty(); | 415 | 118 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentTypeRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResultBuilderTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 94.5k | static inline RequestKey getEmptyKey() { | 414 | 94.5k | return RequestKey::getEmpty(); | 415 | 94.5k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AttachedResultBuilderRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 312k | static inline RequestKey getEmptyKey() { | 414 | 312k | return RequestKey::getEmpty(); | 415 | 312k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ResultTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 183k | static inline RequestKey getEmptyKey() { | 414 | 183k | return RequestKey::getEmpty(); | 415 | 183k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.00k | static inline RequestKey getEmptyKey() { | 414 | 2.00k | return RequestKey::getEmpty(); | 415 | 2.00k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ParseAbstractFunctionBodyRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 190k | static inline RequestKey getEmptyKey() { | 414 | 190k | return RequestKey::getEmpty(); | 415 | 190k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckFunctionBodyRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 12.1k | static inline RequestKey getEmptyKey() { | 414 | 12.1k | return RequestKey::getEmpty(); | 415 | 12.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsFunctionBodySkippedRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26NeedsNewVTableEntryRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 4.74k | static inline RequestKey getEmptyKey() { | 414 | 4.74k | return RequestKey::getEmpty(); | 415 | 4.74k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 219k | static inline RequestKey getEmptyKey() { | 414 | 219k | return RequestKey::getEmpty(); | 415 | 219k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15IsStaticRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19SimpleDidSetRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SelfAccessKindRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20EnumRawValuesRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 161k | static inline RequestKey getEmptyKey() { | 414 | 161k | return RequestKey::getEmpty(); | 415 | 161k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19BodyInitKindRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 9.32k | static inline RequestKey getEmptyKey() { | 414 | 9.32k | return RequestKey::getEmpty(); | 415 | 9.32k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 17.3k | static inline RequestKey getEmptyKey() { | 414 | 17.3k | return RequestKey::getEmpty(); | 415 | 17.3k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ActorIsolationRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.27M | static inline RequestKey getEmptyKey() { | 414 | 2.27M | return RequestKey::getEmpty(); | 415 | 2.27M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 43 | static inline RequestKey getEmptyKey() { | 414 | 43 | return RequestKey::getEmpty(); | 415 | 43 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE11getEmptyKeyEv DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26FragileFunctionKindRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 481k | static inline RequestKey getEmptyKey() { | 414 | 481k | return RequestKey::getEmpty(); | 415 | 481k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 339k | static inline RequestKey getEmptyKey() { | 414 | 339k | return RequestKey::getEmpty(); | 415 | 339k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ABIMembersRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 40.6k | static inline RequestKey getEmptyKey() { | 414 | 40.6k | return RequestKey::getEmpty(); | 415 | 40.6k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17AllMembersRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 38.0k | static inline RequestKey getEmptyKey() { | 414 | 38.0k | return RequestKey::getEmpty(); | 415 | 38.0k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_48GetDistributedActorArgumentDecodingMethodRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_43GetDistributedActorInvocationDecoderRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49GetDistributedRemoteCallTargetInitFunctionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEEvE11getEmptyKeyEv DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_50GetDistributedActorSystemRemoteCallFunctionRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 28 | static inline RequestKey getEmptyKey() { | 414 | 28 | return RequestKey::getEmpty(); | 415 | 28 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetDistributedThunkRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40GetDistributedActorSystemPropertyRequestEvEEvE11getEmptyKeyEv DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36GetDistributedActorIDPropertyRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 40 | static inline RequestKey getEmptyKey() { | 414 | 40 | return RequestKey::getEmpty(); | 415 | 40 | } |
DocComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27SemanticBriefCommentRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 7.80k | static inline RequestKey getEmptyKey() { | 414 | 7.80k | return RequestKey::getEmpty(); | 415 | 7.80k | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36PolymorphicEffectRequirementsRequestEvEEvE11getEmptyKeyEv Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PolymorphicEffectKindRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 221k | static inline RequestKey getEmptyKey() { | 414 | 221k | return RequestKey::getEmpty(); | 415 | 221k | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ConformanceHasEffectRequestEvEEvE11getEmptyKeyEv Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CallerSideDefaultArgExprRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 7.21k | static inline RequestKey getEmptyKey() { | 414 | 7.21k | return RequestKey::getEmpty(); | 415 | 7.21k | } |
Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE11getEmptyKeyEv Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 728k | static inline RequestKey getEmptyKey() { | 414 | 728k | return RequestKey::getEmpty(); | 415 | 728k | } |
GenericSignature.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 34.7k | static inline RequestKey getEmptyKey() { | 414 | 34.7k | return RequestKey::getEmpty(); | 415 | 34.7k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22IsNonUserModuleRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 65 | static inline RequestKey getEmptyKey() { | 414 | 65 | return RequestKey::getEmpty(); | 415 | 65 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleImplicitImportsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.65k | static inline RequestKey getEmptyKey() { | 414 | 1.65k | return RequestKey::getEmpty(); | 415 | 1.65k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PrimarySourceFilesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.30k | static inline RequestKey getEmptyKey() { | 414 | 1.30k | return RequestKey::getEmpty(); | 415 | 1.30k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 30 | static inline RequestKey getEmptyKey() { | 414 | 30 | return RequestKey::getEmpty(); | 415 | 30 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.21M | static inline RequestKey getEmptyKey() { | 414 | 1.21M | return RequestKey::getEmpty(); | 415 | 1.21M | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39ImplicitKnownProtocolConformanceRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 34.3k | static inline RequestKey getEmptyKey() { | 414 | 34.3k | return RequestKey::getEmpty(); | 415 | 34.3k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41GetDistributedActorImplicitCodableRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29HasImportsMatchingFlagRequestEvEEvE11getEmptyKeyEv Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16SPIGroupsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.07M | static inline RequestKey getEmptyKey() { | 414 | 2.07M | return RequestKey::getEmpty(); | 415 | 2.07M | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ModuleLibraryLevelRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 984 | static inline RequestKey getEmptyKey() { | 414 | 984 | return RequestKey::getEmpty(); | 415 | 984 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ParseTopLevelDeclsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 38.2k | static inline RequestKey getEmptyKey() { | 414 | 38.2k | return RequestKey::getEmpty(); | 415 | 38.2k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExportedSourceFileRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.10k | static inline RequestKey getEmptyKey() { | 414 | 2.10k | return RequestKey::getEmpty(); | 415 | 2.10k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22GetSourceFileAsyncNodeEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 5.55k | static inline RequestKey getEmptyKey() { | 414 | 5.55k | return RequestKey::getEmpty(); | 415 | 5.55k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32LookupConformanceInModuleRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ModuleNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21LookupInModuleRequestEvEEvE11getEmptyKeyEv NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 43.7k | static inline RequestKey getEmptyKey() { | 414 | 43.7k | return RequestKey::getEmpty(); | 415 | 43.7k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE11getEmptyKeyEv NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 333k | static inline RequestKey getEmptyKey() { | 414 | 333k | return RequestKey::getEmpty(); | 415 | 333k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 37.3k | static inline RequestKey getEmptyKey() { | 414 | 37.3k | return RequestKey::getEmpty(); | 415 | 37.3k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsCallAsFunctionNominalRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 366 | static inline RequestKey getEmptyKey() { | 414 | 366 | return RequestKey::getEmpty(); | 415 | 366 | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38HasDynamicMemberLookupAttributeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 67.0k | static inline RequestKey getEmptyKey() { | 414 | 67.0k | return RequestKey::getEmpty(); | 415 | 67.0k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 565 | static inline RequestKey getEmptyKey() { | 414 | 565 | return RequestKey::getEmpty(); | 415 | 565 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32SelfBoundsFromWhereClauseRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37SelfBoundsFromGenericSignatureRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19DirectLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CXXNamespaceMemberLookupEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22AnyObjectLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22QualifiedLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleQualifiedLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36UnderlyingTypeDeclsReferencedRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InheritedDeclsReferencedRequestEvEEvE11getEmptyKeyEv OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LookupInfixOperatorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 16.6k | static inline RequestKey getEmptyKey() { | 414 | 16.6k | return RequestKey::getEmpty(); | 415 | 16.6k | } |
OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27LookupPrefixOperatorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 34 | static inline RequestKey getEmptyKey() { | 414 | 34 | return RequestKey::getEmpty(); | 415 | 34 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPostfixOperatorRequestEvEEvE11getEmptyKeyEv OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPrecedenceGroupRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 5.64k | static inline RequestKey getEmptyKey() { | 414 | 5.64k | return RequestKey::getEmpty(); | 415 | 5.64k | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Pattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ExprPatternMatchRequestEvEEvE11getEmptyKeyEv ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ConditionalRequirementsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 387k | static inline RequestKey getEmptyKey() { | 414 | 387k | return RequestKey::getEmpty(); | 415 | 387k | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18TypeWitnessRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 166 | static inline RequestKey getEmptyKey() { | 414 | 166 | return RequestKey::getEmpty(); | 415 | 166 | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AssociatedConformanceRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.68k | static inline RequestKey getEmptyKey() { | 414 | 1.68k | return RequestKey::getEmpty(); | 415 | 1.68k | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ValueWitnessRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 844 | static inline RequestKey getEmptyKey() { | 414 | 844 | return RequestKey::getEmpty(); | 415 | 844 | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37LookupAllConformancesInContextRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 127k | static inline RequestKey getEmptyKey() { | 414 | 127k | return RequestKey::getEmpty(); | 415 | 127k | } |
RawComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17RawCommentRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 38.1k | static inline RequestKey getEmptyKey() { | 414 | 38.1k | return RequestKey::getEmpty(); | 415 | 38.1k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE11getEmptyKeyEv Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IsSingleValueStmtRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 52.7k | static inline RequestKey getEmptyKey() { | 414 | 52.7k | return RequestKey::getEmpty(); | 415 | 52.7k | } |
Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18BreakTargetRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 920 | static inline RequestKey getEmptyKey() { | 414 | 920 | return RequestKey::getEmpty(); | 415 | 920 | } |
Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ContinueTargetRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 431 | static inline RequestKey getEmptyKey() { | 414 | 431 | return RequestKey::getEmpty(); | 415 | 431 | } |
Unexecuted instantiation: Type.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20IsNoncopyableRequestEvEEvE11getEmptyKeyEv TypeCheckRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RequirementRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 48.5k | static inline RequestKey getEmptyKey() { | 414 | 48.5k | return RequestKey::getEmpty(); | 415 | 48.5k | } |
TypeRefinementContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40ExpandChildTypeRefinementContextsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 360k | static inline RequestKey getEmptyKey() { | 414 | 360k | return RequestKey::getEmpty(); | 415 | 360k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE11getEmptyKeyEv |
416 | 40.3M | static inline RequestKey getTombstoneKey() { |
417 | 40.3M | return RequestKey::getTombstone(); |
418 | 40.3M | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18OptimizedIRRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE15getTombstoneKeyEv ClangSyntaxPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 42.5k | static inline RequestKey getTombstoneKey() { | 417 | 42.5k | return RequestKey::getTombstone(); | 418 | 42.5k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Frontend.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IDEInspectionFileRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ConstExtract.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ConstantValueInfoRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: GenClass.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: GenDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: GenDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: GenEnum.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: GenHeap.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: GenMeta.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE15getTombstoneKeyEv IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_12IRGenRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 147 | static inline RequestKey getTombstoneKey() { | 417 | 147 | return RequestKey::getTombstone(); | 418 | 147 | } |
Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17LoweredSILRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20PublicSymbolsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18GenerateTBDRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13APIGenRequestEvEEvE15getTombstoneKeyEv SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 234 | static inline RequestKey getTombstoneKey() { | 417 | 234 | return RequestKey::getTombstone(); | 418 | 234 | } |
Unexecuted instantiation: SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParseSILModuleRequestEvEEvE15getTombstoneKeyEv Common.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.12k | static inline RequestKey getTombstoneKey() { | 417 | 1.12k | return RequestKey::getTombstone(); | 418 | 1.12k | } |
Unexecuted instantiation: PassManager.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExecuteSILPipelineRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDERequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ResolveProtocolNameRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29CollectOverriddenDeclsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24TypeRelationCheckRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Serialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ParseSIL.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: BuilderTransform.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PreCheckResultBuilderRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: CSApply.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE15getTombstoneKeyEv CSRanking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32CompareDeclSpecializationRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 74.2k | static inline RequestKey getTombstoneKey() { | 417 | 74.2k | return RequestKey::getTombstone(); | 418 | 74.2k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29EnumElementExprPatternRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE15getTombstoneKeyEv CSStep.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDeclRefinementOfRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 16.3k | static inline RequestKey getTombstoneKey() { | 417 | 16.3k | return RequestKey::getTombstone(); | 418 | 16.3k | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE15getTombstoneKeyEv CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35HasUserDefinedDesignatedInitRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 5.72k | static inline RequestKey getTombstoneKey() { | 417 | 5.72k | return RequestKey::getTombstone(); | 418 | 5.72k | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_44AreAllStoredPropertiesDefaultInitableRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.83k | static inline RequestKey getTombstoneKey() { | 417 | 1.83k | return RequestKey::getTombstone(); | 418 | 1.83k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE15getTombstoneKeyEv ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ClosureHasExplicitResultRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.74k | static inline RequestKey getTombstoneKey() { | 417 | 1.74k | return RequestKey::getTombstone(); | 418 | 1.74k | } |
DerivedConformanceDifferentiable.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 553 | static inline RequestKey getTombstoneKey() { | 417 | 553 | return RequestKey::getTombstone(); | 418 | 553 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: MiscDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsCCompatibleFuncDeclRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE15getTombstoneKeyEv TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35DistributedModuleIsAvailableRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 40 | static inline RequestKey getTombstoneKey() { | 417 | 40 | return RequestKey::getTombstone(); | 418 | 40 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CheckDistributedFunctionRequestEvEEvE15getTombstoneKeyEv TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ValidatePrecedenceGroupRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 11.6k | static inline RequestKey getTombstoneKey() { | 417 | 11.6k | return RequestKey::getTombstone(); | 418 | 11.6k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE15getTombstoneKeyEv TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 29.4k | static inline RequestKey getTombstoneKey() { | 417 | 29.4k | return RequestKey::getTombstone(); | 418 | 29.4k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34TypeCheckObjCImplementationRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE15getTombstoneKeyEv TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CheckRedeclarationRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 10.4k | static inline RequestKey getTombstoneKey() { | 417 | 10.4k | return RequestKey::getTombstone(); | 418 | 10.4k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE15getTombstoneKeyEv TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ApplyAccessNoteRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 678k | static inline RequestKey getTombstoneKey() { | 417 | 678k | return RequestKey::getTombstone(); | 418 | 678k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE15getTombstoneKeyEv TypeCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18DefaultTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 163k | static inline RequestKey getTombstoneKey() { | 417 | 163k | return RequestKey::getTombstone(); | 418 | 163k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31HasNoncopyableAnnotationRequestEvEEvE15getTombstoneKeyEv TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 24 | static inline RequestKey getTombstoneKey() { | 417 | 24 | return RequestKey::getTombstone(); | 418 | 24 | } |
TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CompilerPluginLoadRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 16 | static inline RequestKey getTombstoneKey() { | 417 | 16 | return RequestKey::getTombstone(); | 418 | 16 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE15getTombstoneKeyEv TypeCheckPattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18PatternTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 83.3k | static inline RequestKey getTombstoneKey() { | 417 | 83.3k | return RequestKey::getTombstone(); | 418 | 83.3k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE15getTombstoneKeyEv TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 964 | static inline RequestKey getTombstoneKey() { | 417 | 964 | return RequestKey::getTombstone(); | 418 | 964 | } |
TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4.99k | static inline RequestKey getTombstoneKey() { | 417 | 4.99k | return RequestKey::getTombstone(); | 418 | 4.99k | } |
TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 28 | static inline RequestKey getTombstoneKey() { | 417 | 28 | return RequestKey::getTombstone(); | 418 | 28 | } |
TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 63.1k | static inline RequestKey getTombstoneKey() { | 417 | 63.1k | return RequestKey::getTombstone(); | 418 | 63.1k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27PreCheckFunctionBodyRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE15getTombstoneKeyEv TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperLValuenessRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 227 | static inline RequestKey getTombstoneKey() { | 417 | 227 | return RequestKey::getTombstone(); | 418 | 227 | } |
TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20ExpandAccessorMacrosEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 89.8k | static inline RequestKey getTombstoneKey() { | 417 | 89.8k | return RequestKey::getTombstone(); | 418 | 89.8k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ResolveTypeRequestEvEEvE15getTombstoneKeyEv TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26TypeCheckSourceFileRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 289 | static inline RequestKey getTombstoneKey() { | 417 | 289 | return RequestKey::getTombstone(); | 418 | 289 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49CheckInconsistentImplementationOnlyImportsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.08k | static inline RequestKey getTombstoneKey() { | 417 | 1.08k | return RequestKey::getTombstone(); | 418 | 1.08k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38CheckInconsistentSPIOnlyImportsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.89k | static inline RequestKey getTombstoneKey() { | 417 | 1.89k | return RequestKey::getTombstone(); | 418 | 1.89k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36CheckInconsistentAccessLevelOnImportEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.89k | static inline RequestKey getTombstoneKey() { | 417 | 1.89k | return RequestKey::getTombstone(); | 418 | 1.89k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41CheckInconsistentWeakLinkedImportsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.08k | static inline RequestKey getTombstoneKey() { | 417 | 1.08k | return RequestKey::getTombstone(); | 418 | 1.08k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 25.0k | static inline RequestKey getTombstoneKey() { | 417 | 25.0k | return RequestKey::getTombstone(); | 418 | 25.0k | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckASTNodeAtLocRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 223k | static inline RequestKey getTombstoneKey() { | 417 | 223k | return RequestKey::getTombstone(); | 418 | 223k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ObjCInterfaceAndImplementationRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ClangCategoryLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportName.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsSafeUseOfCxxDeclEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20CxxRecordAsSwiftTypeEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IDEInspectionSecondPassRequestEvEEvE15getTombstoneKeyEv Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 145 | static inline RequestKey getTombstoneKey() { | 417 | 145 | return RequestKey::getTombstone(); | 418 | 145 | } |
Unexecuted instantiation: ParseRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: AccessRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31TypeDeclsFromWhereClauseRequestEvEEvE15getTombstoneKeyEv ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 222k | static inline RequestKey getTombstoneKey() { | 417 | 222k | return RequestKey::getTombstone(); | 418 | 222k | } |
ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 8 | static inline RequestKey getTombstoneKey() { | 417 | 8 | return RequestKey::getTombstone(); | 418 | 8 | } |
ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 8 | static inline RequestKey getTombstoneKey() { | 417 | 8 | return RequestKey::getTombstone(); | 418 | 8 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEEvE15getTombstoneKeyEv ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 8 | static inline RequestKey getTombstoneKey() { | 417 | 8 | return RequestKey::getTombstone(); | 418 | 8 | } |
ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 13 | static inline RequestKey getTombstoneKey() { | 417 | 13 | return RequestKey::getTombstone(); | 418 | 13 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ASTPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE15getTombstoneKeyEv Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 64 | static inline RequestKey getTombstoneKey() { | 417 | 64 | return RequestKey::getTombstone(); | 418 | 64 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30TypeEraserHasViableInitRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveTypeEraserTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ResolveRawLayoutLikeTypeRequestEvEEvE15getTombstoneKeyEv Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SpecializeAttrTargetDeclRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 5.12k | static inline RequestKey getTombstoneKey() { | 417 | 5.12k | return RequestKey::getTombstone(); | 418 | 5.12k | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36SerializeAttrGenericSignatureRequestEvEEvE15getTombstoneKeyEv Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39DifferentiableAttributeTypeCheckRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 2.95k | static inline RequestKey getTombstoneKey() { | 417 | 2.95k | return RequestKey::getTombstone(); | 418 | 2.95k | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DerivativeAttrOriginalDeclRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4.49k | static inline RequestKey getTombstoneKey() { | 417 | 4.49k | return RequestKey::getTombstone(); | 418 | 4.49k | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29ImplementsAttrProtocolRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 653 | static inline RequestKey getTombstoneKey() { | 417 | 653 | return RequestKey::getTombstone(); | 418 | 653 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38InitAccessorReferencedVariablesRequestEvEEvE15getTombstoneKeyEv Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33SemanticAvailableRangeAttrRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 2.00k | static inline RequestKey getTombstoneKey() { | 417 | 2.00k | return RequestKey::getTombstone(); | 418 | 2.00k | } |
Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30SemanticUnavailableAttrRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 407k | static inline RequestKey getTombstoneKey() { | 417 | 407k | return RequestKey::getTombstone(); | 418 | 407k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ExpandMemberAttributeMacrosEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 2.47M | static inline RequestKey getTombstoneKey() { | 417 | 2.47M | return RequestKey::getTombstone(); | 418 | 2.47M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 952k | static inline RequestKey getTombstoneKey() { | 417 | 952k | return RequestKey::getTombstone(); | 418 | 952k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.05k | static inline RequestKey getTombstoneKey() { | 417 | 1.05k | return RequestKey::getTombstone(); | 418 | 1.05k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 3.64M | static inline RequestKey getTombstoneKey() { | 417 | 3.64M | return RequestKey::getTombstone(); | 418 | 3.64M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ThrownTypeRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsAccessorTransparentRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 78 | static inline RequestKey getTombstoneKey() { | 417 | 78 | return RequestKey::getTombstone(); | 418 | 78 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericParamListRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericSignatureRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 656k | static inline RequestKey getTombstoneKey() { | 417 | 656k | return RequestKey::getTombstone(); | 418 | 656k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ScopedImportLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExtendedNominalRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 208 | static inline RequestKey getTombstoneKey() { | 417 | 208 | return RequestKey::getTombstone(); | 418 | 208 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31DefaultAndMaxAccessLevelRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 10 | static inline RequestKey getTombstoneKey() { | 417 | 10 | return RequestKey::getTombstone(); | 418 | 10 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 33.5k | static inline RequestKey getTombstoneKey() { | 417 | 33.5k | return RequestKey::getTombstone(); | 418 | 33.5k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26PatternBindingEntryRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 859 | static inline RequestKey getTombstoneKey() { | 417 | 859 | return RequestKey::getTombstone(); | 418 | 859 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30RequiresOpaqueAccessorsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.10k | static inline RequestKey getTombstoneKey() { | 417 | 1.10k | return RequestKey::getTombstone(); | 418 | 1.10k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36RequiresOpaqueModifyCoroutineRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.12k | static inline RequestKey getTombstoneKey() { | 417 | 1.12k | return RequestKey::getTombstone(); | 418 | 1.12k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25SynthesizeAccessorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 814 | static inline RequestKey getTombstoneKey() { | 417 | 814 | return RequestKey::getTombstone(); | 418 | 814 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 25.5k | static inline RequestKey getTombstoneKey() { | 417 | 25.5k | return RequestKey::getTombstone(); | 418 | 25.5k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsGetterMutatingRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.69k | static inline RequestKey getTombstoneKey() { | 417 | 1.69k | return RequestKey::getTombstone(); | 418 | 1.69k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsSetterMutatingRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.87k | static inline RequestKey getTombstoneKey() { | 417 | 1.87k | return RequestKey::getTombstone(); | 418 | 1.87k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26OpaqueReadOwnershipRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4.60k | static inline RequestKey getTombstoneKey() { | 417 | 4.60k | return RequestKey::getTombstone(); | 418 | 4.60k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 48.5k | static inline RequestKey getTombstoneKey() { | 417 | 48.5k | return RequestKey::getTombstone(); | 418 | 48.5k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 70.2k | static inline RequestKey getTombstoneKey() { | 417 | 70.2k | return RequestKey::getTombstone(); | 418 | 70.2k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 18 | static inline RequestKey getTombstoneKey() { | 417 | 18 | return RequestKey::getTombstone(); | 418 | 18 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13IsObjCRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 119k | static inline RequestKey getTombstoneKey() { | 417 | 119k | return RequestKey::getTombstone(); | 418 | 119k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsFinalRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 411 | static inline RequestKey getTombstoneKey() { | 417 | 411 | return RequestKey::getTombstone(); | 418 | 411 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsEscapableRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16IsDynamicRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4.44k | static inline RequestKey getTombstoneKey() { | 417 | 4.44k | return RequestKey::getTombstone(); | 418 | 4.44k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30DynamicallyReplacedDeclRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 581k | static inline RequestKey getTombstoneKey() { | 417 | 581k | return RequestKey::getTombstone(); | 418 | 581k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36IsImplicitlyUnwrappedOptionalRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InterfaceTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 5.30M | static inline RequestKey getTombstoneKey() { | 417 | 5.30M | return RequestKey::getTombstone(); | 418 | 5.30M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18AccessLevelRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 102k | static inline RequestKey getTombstoneKey() { | 417 | 102k | return RequestKey::getTombstone(); | 418 | 102k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31HasNoncopyableAnnotationRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23StoredPropertiesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 5.96M | static inline RequestKey getTombstoneKey() { | 417 | 5.96M | return RequestKey::getTombstone(); | 418 | 5.96M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29InitAccessorPropertiesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4.86k | static inline RequestKey getTombstoneKey() { | 417 | 4.86k | return RequestKey::getTombstone(); | 418 | 4.86k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31MemberwiseInitPropertiesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 3.52k | static inline RequestKey getTombstoneKey() { | 417 | 3.52k | return RequestKey::getTombstone(); | 418 | 3.52k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40StoredPropertiesAndMissingMembersRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 6.34k | static inline RequestKey getTombstoneKey() { | 417 | 6.34k | return RequestKey::getTombstone(); | 418 | 6.34k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30PropertyWrapperTypeInfoRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.77k | static inline RequestKey getTombstoneKey() { | 417 | 1.77k | return RequestKey::getTombstone(); | 418 | 1.77k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsActorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.59M | static inline RequestKey getTombstoneKey() { | 417 | 1.59M | return RequestKey::getTombstone(); | 418 | 1.59M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDistributedActorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 455k | static inline RequestKey getTombstoneKey() { | 417 | 455k | return RequestKey::getTombstone(); | 418 | 455k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21UnderlyingTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 2.32k | static inline RequestKey getTombstoneKey() { | 417 | 2.32k | return RequestKey::getTombstone(); | 418 | 2.32k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21StructuralTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 61.5k | static inline RequestKey getTombstoneKey() { | 417 | 61.5k | return RequestKey::getTombstone(); | 418 | 61.5k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28DefaultDefinitionTypeRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18EnumRawTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 23.0k | static inline RequestKey getTombstoneKey() { | 417 | 23.0k | return RequestKey::getTombstone(); | 418 | 23.0k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24HasMemberwiseInitRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 3.90k | static inline RequestKey getTombstoneKey() { | 417 | 3.90k | return RequestKey::getTombstone(); | 418 | 3.90k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SynthesizeMemberwiseInitRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.76k | static inline RequestKey getTombstoneKey() { | 417 | 1.76k | return RequestKey::getTombstone(); | 418 | 1.76k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ResolveEffectiveMemberwiseInitRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 2.75k | static inline RequestKey getTombstoneKey() { | 417 | 2.75k | return RequestKey::getTombstone(); | 418 | 2.75k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21HasDefaultInitRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4.02k | static inline RequestKey getTombstoneKey() { | 417 | 4.02k | return RequestKey::getTombstone(); | 418 | 4.02k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28SynthesizeDefaultInitRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 658 | static inline RequestKey getTombstoneKey() { | 417 | 658 | return RequestKey::getTombstone(); | 418 | 658 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GlobalActorInstanceRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 135 | static inline RequestKey getTombstoneKey() { | 417 | 135 | return RequestKey::getTombstone(); | 418 | 135 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20GetDestructorRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21IsDefaultActorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4.62k | static inline RequestKey getTombstoneKey() { | 417 | 4.62k | return RequestKey::getTombstone(); | 418 | 4.62k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39HasMissingDesignatedInitializersRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4 | static inline RequestKey getTombstoneKey() { | 417 | 4 | return RequestKey::getTombstone(); | 418 | 4 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37InheritsSuperclassInitializersRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 34 | static inline RequestKey getTombstoneKey() { | 417 | 34 | return RequestKey::getTombstone(); | 418 | 34 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ClassAncestryFlagsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 16.8k | static inline RequestKey getTombstoneKey() { | 417 | 16.8k | return RequestKey::getTombstone(); | 418 | 16.8k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.54k | static inline RequestKey getTombstoneKey() { | 417 | 1.54k | return RequestKey::getTombstone(); | 418 | 1.54k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25InheritedProtocolsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.39k | static inline RequestKey getTombstoneKey() { | 417 | 1.39k | return RequestKey::getTombstone(); | 418 | 1.39k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolRequirementsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.34k | static inline RequestKey getTombstoneKey() { | 417 | 1.34k | return RequestKey::getTombstone(); | 418 | 1.34k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.03k | static inline RequestKey getTombstoneKey() { | 417 | 1.03k | return RequestKey::getTombstone(); | 418 | 1.03k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProtocolRequiresClassRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 32 | static inline RequestKey getTombstoneKey() { | 417 | 32 | return RequestKey::getTombstone(); | 418 | 32 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ExistentialConformsToSelfRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_42HasSelfOrAssociatedTypeRequirementsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 2 | static inline RequestKey getTombstoneKey() { | 417 | 2 | return RequestKey::getTombstone(); | 418 | 2 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29PrimaryAssociatedTypesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 6.98k | static inline RequestKey getTombstoneKey() { | 417 | 6.98k | return RequestKey::getTombstone(); | 418 | 6.98k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29StructuralRequirementsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.37k | static inline RequestKey getTombstoneKey() { | 417 | 1.37k | return RequestKey::getTombstone(); | 418 | 1.37k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeAliasRequirementsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 909 | static inline RequestKey getTombstoneKey() { | 417 | 909 | return RequestKey::getTombstone(); | 418 | 909 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolDependenciesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 162k | static inline RequestKey getTombstoneKey() { | 417 | 162k | return RequestKey::getTombstone(); | 418 | 162k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27RequirementSignatureRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 8.49k | static inline RequestKey getTombstoneKey() { | 417 | 8.49k | return RequestKey::getTombstone(); | 418 | 8.49k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.15k | static inline RequestKey getTombstoneKey() { | 417 | 1.15k | return RequestKey::getTombstone(); | 418 | 1.15k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.14M | static inline RequestKey getTombstoneKey() { | 417 | 1.14M | return RequestKey::getTombstone(); | 418 | 1.14M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22StorageImplInfoRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 8.44k | static inline RequestKey getTombstoneKey() { | 417 | 8.44k | return RequestKey::getTombstone(); | 418 | 8.44k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24SetterAccessLevelRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasInitAccessorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 381k | static inline RequestKey getTombstoneKey() { | 417 | 381k | return RequestKey::getTombstone(); | 418 | 381k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 718k | static inline RequestKey getTombstoneKey() { | 417 | 718k | return RequestKey::getTombstone(); | 418 | 718k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20NamingPatternRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 924 | static inline RequestKey getTombstoneKey() { | 417 | 924 | return RequestKey::getTombstone(); | 418 | 924 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParamSpecifierRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 16.8k | static inline RequestKey getTombstoneKey() { | 417 | 16.8k | return RequestKey::getTombstone(); | 418 | 16.8k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 3.57M | static inline RequestKey getTombstoneKey() { | 417 | 3.57M | return RequestKey::getTombstone(); | 418 | 3.57M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34AttachedPropertyWrapperTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 3.03k | static inline RequestKey getTombstoneKey() { | 417 | 3.03k | return RequestKey::getTombstone(); | 418 | 3.03k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 3.05k | static inline RequestKey getTombstoneKey() { | 417 | 3.05k | return RequestKey::getTombstone(); | 418 | 3.05k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 240k | static inline RequestKey getTombstoneKey() { | 417 | 240k | return RequestKey::getTombstone(); | 418 | 240k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 70.7k | static inline RequestKey getTombstoneKey() { | 417 | 70.7k | return RequestKey::getTombstone(); | 418 | 70.7k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperMutabilityRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 97.6k | static inline RequestKey getTombstoneKey() { | 417 | 97.6k | return RequestKey::getTombstone(); | 418 | 97.6k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 22 | static inline RequestKey getTombstoneKey() { | 417 | 22 | return RequestKey::getTombstone(); | 418 | 22 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DefaultArgumentInitContextRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentExprRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 90 | static inline RequestKey getTombstoneKey() { | 417 | 90 | return RequestKey::getTombstone(); | 418 | 90 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentTypeRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResultBuilderTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 76.2k | static inline RequestKey getTombstoneKey() { | 417 | 76.2k | return RequestKey::getTombstone(); | 418 | 76.2k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AttachedResultBuilderRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 243k | static inline RequestKey getTombstoneKey() { | 417 | 243k | return RequestKey::getTombstone(); | 418 | 243k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ResultTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 182k | static inline RequestKey getTombstoneKey() { | 417 | 182k | return RequestKey::getTombstone(); | 418 | 182k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.56k | static inline RequestKey getTombstoneKey() { | 417 | 1.56k | return RequestKey::getTombstone(); | 418 | 1.56k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ParseAbstractFunctionBodyRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 189k | static inline RequestKey getTombstoneKey() { | 417 | 189k | return RequestKey::getTombstone(); | 418 | 189k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckFunctionBodyRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 9.87k | static inline RequestKey getTombstoneKey() { | 417 | 9.87k | return RequestKey::getTombstone(); | 418 | 9.87k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsFunctionBodySkippedRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26NeedsNewVTableEntryRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4.64k | static inline RequestKey getTombstoneKey() { | 417 | 4.64k | return RequestKey::getTombstone(); | 418 | 4.64k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 153k | static inline RequestKey getTombstoneKey() { | 417 | 153k | return RequestKey::getTombstone(); | 418 | 153k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15IsStaticRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19SimpleDidSetRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SelfAccessKindRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20EnumRawValuesRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 126k | static inline RequestKey getTombstoneKey() { | 417 | 126k | return RequestKey::getTombstone(); | 418 | 126k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19BodyInitKindRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 7.53k | static inline RequestKey getTombstoneKey() { | 417 | 7.53k | return RequestKey::getTombstone(); | 418 | 7.53k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 13.0k | static inline RequestKey getTombstoneKey() { | 417 | 13.0k | return RequestKey::getTombstone(); | 418 | 13.0k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ActorIsolationRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 2.15M | static inline RequestKey getTombstoneKey() { | 417 | 2.15M | return RequestKey::getTombstone(); | 418 | 2.15M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 27 | static inline RequestKey getTombstoneKey() { | 417 | 27 | return RequestKey::getTombstone(); | 418 | 27 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE15getTombstoneKeyEv DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26FragileFunctionKindRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 412k | static inline RequestKey getTombstoneKey() { | 417 | 412k | return RequestKey::getTombstone(); | 418 | 412k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 328k | static inline RequestKey getTombstoneKey() { | 417 | 328k | return RequestKey::getTombstone(); | 418 | 328k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ABIMembersRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 31.3k | static inline RequestKey getTombstoneKey() { | 417 | 31.3k | return RequestKey::getTombstone(); | 418 | 31.3k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17AllMembersRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 31.0k | static inline RequestKey getTombstoneKey() { | 417 | 31.0k | return RequestKey::getTombstone(); | 418 | 31.0k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_48GetDistributedActorArgumentDecodingMethodRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_43GetDistributedActorInvocationDecoderRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49GetDistributedRemoteCallTargetInitFunctionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEEvE15getTombstoneKeyEv DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_50GetDistributedActorSystemRemoteCallFunctionRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 16 | static inline RequestKey getTombstoneKey() { | 417 | 16 | return RequestKey::getTombstone(); | 418 | 16 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetDistributedThunkRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40GetDistributedActorSystemPropertyRequestEvEEvE15getTombstoneKeyEv DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36GetDistributedActorIDPropertyRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 32 | static inline RequestKey getTombstoneKey() { | 417 | 32 | return RequestKey::getTombstone(); | 418 | 32 | } |
DocComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27SemanticBriefCommentRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 5.87k | static inline RequestKey getTombstoneKey() { | 417 | 5.87k | return RequestKey::getTombstone(); | 418 | 5.87k | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36PolymorphicEffectRequirementsRequestEvEEvE15getTombstoneKeyEv Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PolymorphicEffectKindRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 201k | static inline RequestKey getTombstoneKey() { | 417 | 201k | return RequestKey::getTombstone(); | 418 | 201k | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ConformanceHasEffectRequestEvEEvE15getTombstoneKeyEv Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CallerSideDefaultArgExprRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4.66k | static inline RequestKey getTombstoneKey() { | 417 | 4.66k | return RequestKey::getTombstone(); | 418 | 4.66k | } |
Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE15getTombstoneKeyEv Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 725k | static inline RequestKey getTombstoneKey() { | 417 | 725k | return RequestKey::getTombstone(); | 418 | 725k | } |
GenericSignature.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 30.7k | static inline RequestKey getTombstoneKey() { | 417 | 30.7k | return RequestKey::getTombstone(); | 418 | 30.7k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22IsNonUserModuleRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 43 | static inline RequestKey getTombstoneKey() { | 417 | 43 | return RequestKey::getTombstone(); | 418 | 43 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleImplicitImportsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.12k | static inline RequestKey getTombstoneKey() { | 417 | 1.12k | return RequestKey::getTombstone(); | 418 | 1.12k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PrimarySourceFilesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 889 | static inline RequestKey getTombstoneKey() { | 417 | 889 | return RequestKey::getTombstone(); | 418 | 889 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 18 | static inline RequestKey getTombstoneKey() { | 417 | 18 | return RequestKey::getTombstone(); | 418 | 18 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.20M | static inline RequestKey getTombstoneKey() { | 417 | 1.20M | return RequestKey::getTombstone(); | 418 | 1.20M | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39ImplicitKnownProtocolConformanceRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 29.9k | static inline RequestKey getTombstoneKey() { | 417 | 29.9k | return RequestKey::getTombstone(); | 418 | 29.9k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41GetDistributedActorImplicitCodableRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29HasImportsMatchingFlagRequestEvEEvE15getTombstoneKeyEv Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16SPIGroupsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.93M | static inline RequestKey getTombstoneKey() { | 417 | 1.93M | return RequestKey::getTombstone(); | 418 | 1.93M | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ModuleLibraryLevelRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 682 | static inline RequestKey getTombstoneKey() { | 417 | 682 | return RequestKey::getTombstone(); | 418 | 682 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ParseTopLevelDeclsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 37.1k | static inline RequestKey getTombstoneKey() { | 417 | 37.1k | return RequestKey::getTombstone(); | 418 | 37.1k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExportedSourceFileRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.29k | static inline RequestKey getTombstoneKey() { | 417 | 1.29k | return RequestKey::getTombstone(); | 418 | 1.29k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22GetSourceFileAsyncNodeEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 5.35k | static inline RequestKey getTombstoneKey() { | 417 | 5.35k | return RequestKey::getTombstone(); | 418 | 5.35k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32LookupConformanceInModuleRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ModuleNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21LookupInModuleRequestEvEEvE15getTombstoneKeyEv NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 35.0k | static inline RequestKey getTombstoneKey() { | 417 | 35.0k | return RequestKey::getTombstone(); | 418 | 35.0k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE15getTombstoneKeyEv NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 257k | static inline RequestKey getTombstoneKey() { | 417 | 257k | return RequestKey::getTombstone(); | 418 | 257k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 37.1k | static inline RequestKey getTombstoneKey() { | 417 | 37.1k | return RequestKey::getTombstone(); | 418 | 37.1k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsCallAsFunctionNominalRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 265 | static inline RequestKey getTombstoneKey() { | 417 | 265 | return RequestKey::getTombstone(); | 418 | 265 | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38HasDynamicMemberLookupAttributeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 61.6k | static inline RequestKey getTombstoneKey() { | 417 | 61.6k | return RequestKey::getTombstone(); | 418 | 61.6k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 403 | static inline RequestKey getTombstoneKey() { | 417 | 403 | return RequestKey::getTombstone(); | 418 | 403 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32SelfBoundsFromWhereClauseRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37SelfBoundsFromGenericSignatureRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19DirectLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CXXNamespaceMemberLookupEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22AnyObjectLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22QualifiedLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleQualifiedLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36UnderlyingTypeDeclsReferencedRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InheritedDeclsReferencedRequestEvEEvE15getTombstoneKeyEv OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LookupInfixOperatorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 14.4k | static inline RequestKey getTombstoneKey() { | 417 | 14.4k | return RequestKey::getTombstone(); | 418 | 14.4k | } |
OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27LookupPrefixOperatorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 20 | static inline RequestKey getTombstoneKey() { | 417 | 20 | return RequestKey::getTombstone(); | 418 | 20 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPostfixOperatorRequestEvEEvE15getTombstoneKeyEv OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPrecedenceGroupRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4.94k | static inline RequestKey getTombstoneKey() { | 417 | 4.94k | return RequestKey::getTombstone(); | 418 | 4.94k | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Pattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ExprPatternMatchRequestEvEEvE15getTombstoneKeyEv ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ConditionalRequirementsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 369k | static inline RequestKey getTombstoneKey() { | 417 | 369k | return RequestKey::getTombstone(); | 418 | 369k | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18TypeWitnessRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 83 | static inline RequestKey getTombstoneKey() { | 417 | 83 | return RequestKey::getTombstone(); | 418 | 83 | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AssociatedConformanceRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.03k | static inline RequestKey getTombstoneKey() { | 417 | 1.03k | return RequestKey::getTombstone(); | 418 | 1.03k | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ValueWitnessRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 839 | static inline RequestKey getTombstoneKey() { | 417 | 839 | return RequestKey::getTombstone(); | 418 | 839 | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37LookupAllConformancesInContextRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 114k | static inline RequestKey getTombstoneKey() { | 417 | 114k | return RequestKey::getTombstone(); | 418 | 114k | } |
RawComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17RawCommentRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 30.2k | static inline RequestKey getTombstoneKey() { | 417 | 30.2k | return RequestKey::getTombstone(); | 418 | 30.2k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE15getTombstoneKeyEv Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IsSingleValueStmtRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 39.7k | static inline RequestKey getTombstoneKey() { | 417 | 39.7k | return RequestKey::getTombstone(); | 418 | 39.7k | } |
Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18BreakTargetRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 734 | static inline RequestKey getTombstoneKey() { | 417 | 734 | return RequestKey::getTombstone(); | 418 | 734 | } |
Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ContinueTargetRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 337 | static inline RequestKey getTombstoneKey() { | 417 | 337 | return RequestKey::getTombstone(); | 418 | 337 | } |
Unexecuted instantiation: Type.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20IsNoncopyableRequestEvEEvE15getTombstoneKeyEv TypeCheckRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RequirementRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 39.7k | static inline RequestKey getTombstoneKey() { | 417 | 39.7k | return RequestKey::getTombstone(); | 418 | 39.7k | } |
TypeRefinementContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40ExpandChildTypeRefinementContextsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 334k | static inline RequestKey getTombstoneKey() { | 417 | 334k | return RequestKey::getTombstone(); | 418 | 334k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE15getTombstoneKeyEv |
419 | 7.38M | static unsigned getHashValue(const RequestKey &key) { |
420 | 7.38M | return hash_value(key); |
421 | 7.38M | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18OptimizedIRRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE12getHashValueERKS6_ ClangSyntaxPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 20.1k | static unsigned getHashValue(const RequestKey &key) { | 420 | 20.1k | return hash_value(key); | 421 | 20.1k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Frontend.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IDEInspectionFileRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ConstExtract.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ConstantValueInfoRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: GenClass.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: GenDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: GenDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: GenEnum.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: GenHeap.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: GenMeta.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE12getHashValueERKS6_ IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_12IRGenRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 49 | static unsigned getHashValue(const RequestKey &key) { | 420 | 49 | return hash_value(key); | 421 | 49 | } |
Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17LoweredSILRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20PublicSymbolsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18GenerateTBDRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13APIGenRequestEvEEvE12getHashValueERKS6_ SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 78 | static unsigned getHashValue(const RequestKey &key) { | 420 | 78 | return hash_value(key); | 421 | 78 | } |
Unexecuted instantiation: SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParseSILModuleRequestEvEEvE12getHashValueERKS6_ Common.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 88 | static unsigned getHashValue(const RequestKey &key) { | 420 | 88 | return hash_value(key); | 421 | 88 | } |
Unexecuted instantiation: PassManager.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExecuteSILPipelineRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDERequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ResolveProtocolNameRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29CollectOverriddenDeclsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24TypeRelationCheckRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Serialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ParseSIL.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: BuilderTransform.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PreCheckResultBuilderRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: CSApply.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE12getHashValueERKS6_ CSRanking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32CompareDeclSpecializationRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 27.6k | static unsigned getHashValue(const RequestKey &key) { | 420 | 27.6k | return hash_value(key); | 421 | 27.6k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29EnumElementExprPatternRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE12getHashValueERKS6_ CSStep.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDeclRefinementOfRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4.15k | static unsigned getHashValue(const RequestKey &key) { | 420 | 4.15k | return hash_value(key); | 421 | 4.15k | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE12getHashValueERKS6_ CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35HasUserDefinedDesignatedInitRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2.44k | static unsigned getHashValue(const RequestKey &key) { | 420 | 2.44k | return hash_value(key); | 421 | 2.44k | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_44AreAllStoredPropertiesDefaultInitableRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 949 | static unsigned getHashValue(const RequestKey &key) { | 420 | 949 | return hash_value(key); | 421 | 949 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE12getHashValueERKS6_ ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ClosureHasExplicitResultRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 926 | static unsigned getHashValue(const RequestKey &key) { | 420 | 926 | return hash_value(key); | 421 | 926 | } |
DerivedConformanceDifferentiable.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 505 | static unsigned getHashValue(const RequestKey &key) { | 420 | 505 | return hash_value(key); | 421 | 505 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: MiscDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsCCompatibleFuncDeclRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE12getHashValueERKS6_ TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35DistributedModuleIsAvailableRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 8 | static unsigned getHashValue(const RequestKey &key) { | 420 | 8 | return hash_value(key); | 421 | 8 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CheckDistributedFunctionRequestEvEEvE12getHashValueERKS6_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ValidatePrecedenceGroupRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 7.80k | static unsigned getHashValue(const RequestKey &key) { | 420 | 7.80k | return hash_value(key); | 421 | 7.80k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE12getHashValueERKS6_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 15.7k | static unsigned getHashValue(const RequestKey &key) { | 420 | 15.7k | return hash_value(key); | 421 | 15.7k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34TypeCheckObjCImplementationRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE12getHashValueERKS6_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CheckRedeclarationRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 5.78k | static unsigned getHashValue(const RequestKey &key) { | 420 | 5.78k | return hash_value(key); | 421 | 5.78k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE12getHashValueERKS6_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ApplyAccessNoteRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 351k | static unsigned getHashValue(const RequestKey &key) { | 420 | 351k | return hash_value(key); | 421 | 351k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE12getHashValueERKS6_ TypeCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18DefaultTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 166 | static unsigned getHashValue(const RequestKey &key) { | 420 | 166 | return hash_value(key); | 421 | 166 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31HasNoncopyableAnnotationRequestEvEEvE12getHashValueERKS6_ TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 12 | static unsigned getHashValue(const RequestKey &key) { | 420 | 12 | return hash_value(key); | 421 | 12 | } |
TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CompilerPluginLoadRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4 | static unsigned getHashValue(const RequestKey &key) { | 420 | 4 | return hash_value(key); | 421 | 4 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE12getHashValueERKS6_ TypeCheckPattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18PatternTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 45.7k | static unsigned getHashValue(const RequestKey &key) { | 420 | 45.7k | return hash_value(key); | 421 | 45.7k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE12getHashValueERKS6_ TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 726 | static unsigned getHashValue(const RequestKey &key) { | 420 | 726 | return hash_value(key); | 421 | 726 | } |
TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.30k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.30k | return hash_value(key); | 421 | 1.30k | } |
TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 25 | static unsigned getHashValue(const RequestKey &key) { | 420 | 25 | return hash_value(key); | 421 | 25 | } |
TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 42.7k | static unsigned getHashValue(const RequestKey &key) { | 420 | 42.7k | return hash_value(key); | 421 | 42.7k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27PreCheckFunctionBodyRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE12getHashValueERKS6_ TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperLValuenessRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 66 | static unsigned getHashValue(const RequestKey &key) { | 420 | 66 | return hash_value(key); | 421 | 66 | } |
TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20ExpandAccessorMacrosEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 61.6k | static unsigned getHashValue(const RequestKey &key) { | 420 | 61.6k | return hash_value(key); | 421 | 61.6k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ResolveTypeRequestEvEEvE12getHashValueERKS6_ TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26TypeCheckSourceFileRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 63 | static unsigned getHashValue(const RequestKey &key) { | 420 | 63 | return hash_value(key); | 421 | 63 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49CheckInconsistentImplementationOnlyImportsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 253 | static unsigned getHashValue(const RequestKey &key) { | 420 | 253 | return hash_value(key); | 421 | 253 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38CheckInconsistentSPIOnlyImportsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.06k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.06k | return hash_value(key); | 421 | 1.06k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36CheckInconsistentAccessLevelOnImportEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.06k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.06k | return hash_value(key); | 421 | 1.06k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41CheckInconsistentWeakLinkedImportsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 253 | static unsigned getHashValue(const RequestKey &key) { | 420 | 253 | return hash_value(key); | 421 | 253 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 16.9k | static unsigned getHashValue(const RequestKey &key) { | 420 | 16.9k | return hash_value(key); | 421 | 16.9k | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckASTNodeAtLocRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 222k | static unsigned getHashValue(const RequestKey &key) { | 420 | 222k | return hash_value(key); | 421 | 222k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ObjCInterfaceAndImplementationRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ClangCategoryLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportName.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsSafeUseOfCxxDeclEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20CxxRecordAsSwiftTypeEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IDEInspectionSecondPassRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ParseRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: AccessRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31TypeDeclsFromWhereClauseRequestEvEEvE12getHashValueERKS6_ ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 221k | static unsigned getHashValue(const RequestKey &key) { | 420 | 221k | return hash_value(key); | 421 | 221k | } |
ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4 | static unsigned getHashValue(const RequestKey &key) { | 420 | 4 | return hash_value(key); | 421 | 4 | } |
ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4 | static unsigned getHashValue(const RequestKey &key) { | 420 | 4 | return hash_value(key); | 421 | 4 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEEvE12getHashValueERKS6_ ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4 | static unsigned getHashValue(const RequestKey &key) { | 420 | 4 | return hash_value(key); | 421 | 4 | } |
ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4 | static unsigned getHashValue(const RequestKey &key) { | 420 | 4 | return hash_value(key); | 421 | 4 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ASTPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE12getHashValueERKS6_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 24 | static unsigned getHashValue(const RequestKey &key) { | 420 | 24 | return hash_value(key); | 421 | 24 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30TypeEraserHasViableInitRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveTypeEraserTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ResolveRawLayoutLikeTypeRequestEvEEvE12getHashValueERKS6_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SpecializeAttrTargetDeclRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 920 | static unsigned getHashValue(const RequestKey &key) { | 420 | 920 | return hash_value(key); | 421 | 920 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36SerializeAttrGenericSignatureRequestEvEEvE12getHashValueERKS6_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39DifferentiableAttributeTypeCheckRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 340 | static unsigned getHashValue(const RequestKey &key) { | 420 | 340 | return hash_value(key); | 421 | 340 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DerivativeAttrOriginalDeclRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.57k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.57k | return hash_value(key); | 421 | 1.57k | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29ImplementsAttrProtocolRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 374 | static unsigned getHashValue(const RequestKey &key) { | 420 | 374 | return hash_value(key); | 421 | 374 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38InitAccessorReferencedVariablesRequestEvEEvE12getHashValueERKS6_ Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33SemanticAvailableRangeAttrRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.09k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.09k | return hash_value(key); | 421 | 1.09k | } |
Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30SemanticUnavailableAttrRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 167k | static unsigned getHashValue(const RequestKey &key) { | 420 | 167k | return hash_value(key); | 421 | 167k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ExpandMemberAttributeMacrosEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.33M | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.33M | return hash_value(key); | 421 | 1.33M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 512k | static unsigned getHashValue(const RequestKey &key) { | 420 | 512k | return hash_value(key); | 421 | 512k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 391 | static unsigned getHashValue(const RequestKey &key) { | 420 | 391 | return hash_value(key); | 421 | 391 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 399k | static unsigned getHashValue(const RequestKey &key) { | 420 | 399k | return hash_value(key); | 421 | 399k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ThrownTypeRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsAccessorTransparentRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 45 | static unsigned getHashValue(const RequestKey &key) { | 420 | 45 | return hash_value(key); | 421 | 45 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericParamListRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericSignatureRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.34k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.34k | return hash_value(key); | 421 | 1.34k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ScopedImportLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExtendedNominalRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 95 | static unsigned getHashValue(const RequestKey &key) { | 420 | 95 | return hash_value(key); | 421 | 95 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31DefaultAndMaxAccessLevelRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2 | static unsigned getHashValue(const RequestKey &key) { | 420 | 2 | return hash_value(key); | 421 | 2 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 92 | static unsigned getHashValue(const RequestKey &key) { | 420 | 92 | return hash_value(key); | 421 | 92 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26PatternBindingEntryRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 806 | static unsigned getHashValue(const RequestKey &key) { | 420 | 806 | return hash_value(key); | 421 | 806 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30RequiresOpaqueAccessorsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 22 | static unsigned getHashValue(const RequestKey &key) { | 420 | 22 | return hash_value(key); | 421 | 22 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36RequiresOpaqueModifyCoroutineRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 146 | static unsigned getHashValue(const RequestKey &key) { | 420 | 146 | return hash_value(key); | 421 | 146 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25SynthesizeAccessorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 785 | static unsigned getHashValue(const RequestKey &key) { | 420 | 785 | return hash_value(key); | 421 | 785 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 15.4k | static unsigned getHashValue(const RequestKey &key) { | 420 | 15.4k | return hash_value(key); | 421 | 15.4k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsGetterMutatingRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 40 | static unsigned getHashValue(const RequestKey &key) { | 420 | 40 | return hash_value(key); | 421 | 40 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsSetterMutatingRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 43 | static unsigned getHashValue(const RequestKey &key) { | 420 | 43 | return hash_value(key); | 421 | 43 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26OpaqueReadOwnershipRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 562 | static unsigned getHashValue(const RequestKey &key) { | 420 | 562 | return hash_value(key); | 421 | 562 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 33.1k | static unsigned getHashValue(const RequestKey &key) { | 420 | 33.1k | return hash_value(key); | 421 | 33.1k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 112 | static unsigned getHashValue(const RequestKey &key) { | 420 | 112 | return hash_value(key); | 421 | 112 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4 | static unsigned getHashValue(const RequestKey &key) { | 420 | 4 | return hash_value(key); | 421 | 4 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13IsObjCRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.07k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.07k | return hash_value(key); | 421 | 1.07k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsFinalRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 14 | static unsigned getHashValue(const RequestKey &key) { | 420 | 14 | return hash_value(key); | 421 | 14 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsEscapableRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16IsDynamicRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 862 | static unsigned getHashValue(const RequestKey &key) { | 420 | 862 | return hash_value(key); | 421 | 862 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30DynamicallyReplacedDeclRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 307k | static unsigned getHashValue(const RequestKey &key) { | 420 | 307k | return hash_value(key); | 421 | 307k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36IsImplicitlyUnwrappedOptionalRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InterfaceTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 8.29k | static unsigned getHashValue(const RequestKey &key) { | 420 | 8.29k | return hash_value(key); | 421 | 8.29k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18AccessLevelRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 5 | static unsigned getHashValue(const RequestKey &key) { | 420 | 5 | return hash_value(key); | 421 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31HasNoncopyableAnnotationRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23StoredPropertiesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 12.4k | static unsigned getHashValue(const RequestKey &key) { | 420 | 12.4k | return hash_value(key); | 421 | 12.4k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29InitAccessorPropertiesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.61k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.61k | return hash_value(key); | 421 | 1.61k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31MemberwiseInitPropertiesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.62k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.62k | return hash_value(key); | 421 | 1.62k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40StoredPropertiesAndMissingMembersRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.15k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.15k | return hash_value(key); | 421 | 1.15k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30PropertyWrapperTypeInfoRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 36 | static unsigned getHashValue(const RequestKey &key) { | 420 | 36 | return hash_value(key); | 421 | 36 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsActorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 36.7k | static unsigned getHashValue(const RequestKey &key) { | 420 | 36.7k | return hash_value(key); | 421 | 36.7k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDistributedActorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 44.9k | static unsigned getHashValue(const RequestKey &key) { | 420 | 44.9k | return hash_value(key); | 421 | 44.9k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21UnderlyingTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 46 | static unsigned getHashValue(const RequestKey &key) { | 420 | 46 | return hash_value(key); | 421 | 46 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21StructuralTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 61.0k | static unsigned getHashValue(const RequestKey &key) { | 420 | 61.0k | return hash_value(key); | 421 | 61.0k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28DefaultDefinitionTypeRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18EnumRawTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 11.7k | static unsigned getHashValue(const RequestKey &key) { | 420 | 11.7k | return hash_value(key); | 421 | 11.7k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24HasMemberwiseInitRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2.04k | static unsigned getHashValue(const RequestKey &key) { | 420 | 2.04k | return hash_value(key); | 421 | 2.04k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SynthesizeMemberwiseInitRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 837 | static unsigned getHashValue(const RequestKey &key) { | 420 | 837 | return hash_value(key); | 421 | 837 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ResolveEffectiveMemberwiseInitRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 484 | static unsigned getHashValue(const RequestKey &key) { | 420 | 484 | return hash_value(key); | 421 | 484 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21HasDefaultInitRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2.43k | static unsigned getHashValue(const RequestKey &key) { | 420 | 2.43k | return hash_value(key); | 421 | 2.43k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28SynthesizeDefaultInitRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 335 | static unsigned getHashValue(const RequestKey &key) { | 420 | 335 | return hash_value(key); | 421 | 335 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GlobalActorInstanceRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 22 | static unsigned getHashValue(const RequestKey &key) { | 420 | 22 | return hash_value(key); | 421 | 22 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20GetDestructorRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21IsDefaultActorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 324 | static unsigned getHashValue(const RequestKey &key) { | 420 | 324 | return hash_value(key); | 421 | 324 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39HasMissingDesignatedInitializersRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2 | static unsigned getHashValue(const RequestKey &key) { | 420 | 2 | return hash_value(key); | 421 | 2 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37InheritsSuperclassInitializersRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 14 | static unsigned getHashValue(const RequestKey &key) { | 420 | 14 | return hash_value(key); | 421 | 14 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ClassAncestryFlagsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.03k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.03k | return hash_value(key); | 421 | 1.03k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 868 | static unsigned getHashValue(const RequestKey &key) { | 420 | 868 | return hash_value(key); | 421 | 868 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25InheritedProtocolsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 7 | static unsigned getHashValue(const RequestKey &key) { | 420 | 7 | return hash_value(key); | 421 | 7 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolRequirementsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 24 | static unsigned getHashValue(const RequestKey &key) { | 420 | 24 | return hash_value(key); | 421 | 24 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 65 | static unsigned getHashValue(const RequestKey &key) { | 420 | 65 | return hash_value(key); | 421 | 65 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProtocolRequiresClassRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 6 | static unsigned getHashValue(const RequestKey &key) { | 420 | 6 | return hash_value(key); | 421 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ExistentialConformsToSelfRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_42HasSelfOrAssociatedTypeRequirementsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1 | static unsigned getHashValue(const RequestKey &key) { | 420 | 1 | return hash_value(key); | 421 | 1 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29PrimaryAssociatedTypesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 230 | static unsigned getHashValue(const RequestKey &key) { | 420 | 230 | return hash_value(key); | 421 | 230 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29StructuralRequirementsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 462 | static unsigned getHashValue(const RequestKey &key) { | 420 | 462 | return hash_value(key); | 421 | 462 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeAliasRequirementsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 461 | static unsigned getHashValue(const RequestKey &key) { | 420 | 461 | return hash_value(key); | 421 | 461 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolDependenciesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 11.9k | static unsigned getHashValue(const RequestKey &key) { | 420 | 11.9k | return hash_value(key); | 421 | 11.9k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27RequirementSignatureRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 25 | static unsigned getHashValue(const RequestKey &key) { | 420 | 25 | return hash_value(key); | 421 | 25 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 514 | static unsigned getHashValue(const RequestKey &key) { | 420 | 514 | return hash_value(key); | 421 | 514 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 20 | static unsigned getHashValue(const RequestKey &key) { | 420 | 20 | return hash_value(key); | 421 | 20 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22StorageImplInfoRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 24 | static unsigned getHashValue(const RequestKey &key) { | 420 | 24 | return hash_value(key); | 421 | 24 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24SetterAccessLevelRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasInitAccessorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 120k | static unsigned getHashValue(const RequestKey &key) { | 420 | 120k | return hash_value(key); | 421 | 120k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 640k | static unsigned getHashValue(const RequestKey &key) { | 420 | 640k | return hash_value(key); | 421 | 640k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20NamingPatternRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 355 | static unsigned getHashValue(const RequestKey &key) { | 420 | 355 | return hash_value(key); | 421 | 355 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParamSpecifierRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 8 | static unsigned getHashValue(const RequestKey &key) { | 420 | 8 | return hash_value(key); | 421 | 8 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 602k | static unsigned getHashValue(const RequestKey &key) { | 420 | 602k | return hash_value(key); | 421 | 602k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34AttachedPropertyWrapperTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.70k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.70k | return hash_value(key); | 421 | 1.70k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.67k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.67k | return hash_value(key); | 421 | 1.67k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 149k | static unsigned getHashValue(const RequestKey &key) { | 420 | 149k | return hash_value(key); | 421 | 149k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 43.0k | static unsigned getHashValue(const RequestKey &key) { | 420 | 43.0k | return hash_value(key); | 421 | 43.0k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperMutabilityRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 52.6k | static unsigned getHashValue(const RequestKey &key) { | 420 | 52.6k | return hash_value(key); | 421 | 52.6k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 5 | static unsigned getHashValue(const RequestKey &key) { | 420 | 5 | return hash_value(key); | 421 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DefaultArgumentInitContextRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentExprRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 22 | static unsigned getHashValue(const RequestKey &key) { | 420 | 22 | return hash_value(key); | 421 | 22 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentTypeRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResultBuilderTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 36.9k | static unsigned getHashValue(const RequestKey &key) { | 420 | 36.9k | return hash_value(key); | 421 | 36.9k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AttachedResultBuilderRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 161k | static unsigned getHashValue(const RequestKey &key) { | 420 | 161k | return hash_value(key); | 421 | 161k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ResultTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.29k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.29k | return hash_value(key); | 421 | 1.29k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 769 | static unsigned getHashValue(const RequestKey &key) { | 420 | 769 | return hash_value(key); | 421 | 769 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ParseAbstractFunctionBodyRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2.28k | static unsigned getHashValue(const RequestKey &key) { | 420 | 2.28k | return hash_value(key); | 421 | 2.28k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckFunctionBodyRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4.18k | static unsigned getHashValue(const RequestKey &key) { | 420 | 4.18k | return hash_value(key); | 421 | 4.18k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsFunctionBodySkippedRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26NeedsNewVTableEntryRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 92 | static unsigned getHashValue(const RequestKey &key) { | 420 | 92 | return hash_value(key); | 421 | 92 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 149k | static unsigned getHashValue(const RequestKey &key) { | 420 | 149k | return hash_value(key); | 421 | 149k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15IsStaticRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19SimpleDidSetRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SelfAccessKindRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20EnumRawValuesRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 75.4k | static unsigned getHashValue(const RequestKey &key) { | 420 | 75.4k | return hash_value(key); | 421 | 75.4k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19BodyInitKindRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4.49k | static unsigned getHashValue(const RequestKey &key) { | 420 | 4.49k | return hash_value(key); | 421 | 4.49k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4.15k | static unsigned getHashValue(const RequestKey &key) { | 420 | 4.15k | return hash_value(key); | 421 | 4.15k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ActorIsolationRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 282k | static unsigned getHashValue(const RequestKey &key) { | 420 | 282k | return hash_value(key); | 421 | 282k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 12 | static unsigned getHashValue(const RequestKey &key) { | 420 | 12 | return hash_value(key); | 421 | 12 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE12getHashValueERKS6_ DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26FragileFunctionKindRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 161k | static unsigned getHashValue(const RequestKey &key) { | 420 | 161k | return hash_value(key); | 421 | 161k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 21.2k | static unsigned getHashValue(const RequestKey &key) { | 420 | 21.2k | return hash_value(key); | 421 | 21.2k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ABIMembersRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 17.0k | static unsigned getHashValue(const RequestKey &key) { | 420 | 17.0k | return hash_value(key); | 421 | 17.0k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17AllMembersRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 13.0k | static unsigned getHashValue(const RequestKey &key) { | 420 | 13.0k | return hash_value(key); | 421 | 13.0k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_48GetDistributedActorArgumentDecodingMethodRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_43GetDistributedActorInvocationDecoderRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49GetDistributedRemoteCallTargetInitFunctionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEEvE12getHashValueERKS6_ DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_50GetDistributedActorSystemRemoteCallFunctionRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 8 | static unsigned getHashValue(const RequestKey &key) { | 420 | 8 | return hash_value(key); | 421 | 8 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetDistributedThunkRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40GetDistributedActorSystemPropertyRequestEvEEvE12getHashValueERKS6_ DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36GetDistributedActorIDPropertyRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4 | static unsigned getHashValue(const RequestKey &key) { | 420 | 4 | return hash_value(key); | 421 | 4 | } |
DocComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27SemanticBriefCommentRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 3.95k | static unsigned getHashValue(const RequestKey &key) { | 420 | 3.95k | return hash_value(key); | 421 | 3.95k | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36PolymorphicEffectRequirementsRequestEvEEvE12getHashValueERKS6_ Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PolymorphicEffectKindRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 40.9k | static unsigned getHashValue(const RequestKey &key) { | 420 | 40.9k | return hash_value(key); | 421 | 40.9k | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ConformanceHasEffectRequestEvEEvE12getHashValueERKS6_ Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CallerSideDefaultArgExprRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4.59k | static unsigned getHashValue(const RequestKey &key) { | 420 | 4.59k | return hash_value(key); | 421 | 4.59k | } |
Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS6_ Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 5.29k | static unsigned getHashValue(const RequestKey &key) { | 420 | 5.29k | return hash_value(key); | 421 | 5.29k | } |
GenericSignature.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 5.73k | static unsigned getHashValue(const RequestKey &key) { | 420 | 5.73k | return hash_value(key); | 421 | 5.73k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22IsNonUserModuleRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 11 | static unsigned getHashValue(const RequestKey &key) { | 420 | 11 | return hash_value(key); | 421 | 11 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleImplicitImportsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 268 | static unsigned getHashValue(const RequestKey &key) { | 420 | 268 | return hash_value(key); | 421 | 268 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PrimarySourceFilesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 210 | static unsigned getHashValue(const RequestKey &key) { | 420 | 210 | return hash_value(key); | 421 | 210 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 9 | static unsigned getHashValue(const RequestKey &key) { | 420 | 9 | return hash_value(key); | 421 | 9 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 15.4k | static unsigned getHashValue(const RequestKey &key) { | 420 | 15.4k | return hash_value(key); | 421 | 15.4k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39ImplicitKnownProtocolConformanceRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 6.45k | static unsigned getHashValue(const RequestKey &key) { | 420 | 6.45k | return hash_value(key); | 421 | 6.45k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41GetDistributedActorImplicitCodableRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29HasImportsMatchingFlagRequestEvEEvE12getHashValueERKS6_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16SPIGroupsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 314k | static unsigned getHashValue(const RequestKey &key) { | 420 | 314k | return hash_value(key); | 421 | 314k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ModuleLibraryLevelRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 224 | static unsigned getHashValue(const RequestKey &key) { | 420 | 224 | return hash_value(key); | 421 | 224 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ParseTopLevelDeclsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.08k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.08k | return hash_value(key); | 421 | 1.08k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExportedSourceFileRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 713 | static unsigned getHashValue(const RequestKey &key) { | 420 | 713 | return hash_value(key); | 421 | 713 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22GetSourceFileAsyncNodeEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 100 | static unsigned getHashValue(const RequestKey &key) { | 420 | 100 | return hash_value(key); | 421 | 100 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32LookupConformanceInModuleRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ModuleNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21LookupInModuleRequestEvEEvE12getHashValueERKS6_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 16.7k | static unsigned getHashValue(const RequestKey &key) { | 420 | 16.7k | return hash_value(key); | 421 | 16.7k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE12getHashValueERKS6_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 177k | static unsigned getHashValue(const RequestKey &key) { | 420 | 177k | return hash_value(key); | 421 | 177k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 187 | static unsigned getHashValue(const RequestKey &key) { | 420 | 187 | return hash_value(key); | 421 | 187 | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsCallAsFunctionNominalRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 77 | static unsigned getHashValue(const RequestKey &key) { | 420 | 77 | return hash_value(key); | 421 | 77 | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38HasDynamicMemberLookupAttributeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 7.85k | static unsigned getHashValue(const RequestKey &key) { | 420 | 7.85k | return hash_value(key); | 421 | 7.85k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 149 | static unsigned getHashValue(const RequestKey &key) { | 420 | 149 | return hash_value(key); | 421 | 149 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32SelfBoundsFromWhereClauseRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37SelfBoundsFromGenericSignatureRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19DirectLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CXXNamespaceMemberLookupEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22AnyObjectLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22QualifiedLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleQualifiedLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36UnderlyingTypeDeclsReferencedRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InheritedDeclsReferencedRequestEvEEvE12getHashValueERKS6_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LookupInfixOperatorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2.95k | static unsigned getHashValue(const RequestKey &key) { | 420 | 2.95k | return hash_value(key); | 421 | 2.95k | } |
OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27LookupPrefixOperatorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 8 | static unsigned getHashValue(const RequestKey &key) { | 420 | 8 | return hash_value(key); | 421 | 8 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPostfixOperatorRequestEvEEvE12getHashValueERKS6_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPrecedenceGroupRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 745 | static unsigned getHashValue(const RequestKey &key) { | 420 | 745 | return hash_value(key); | 421 | 745 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Pattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ExprPatternMatchRequestEvEEvE12getHashValueERKS6_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ConditionalRequirementsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 37.4k | static unsigned getHashValue(const RequestKey &key) { | 420 | 37.4k | return hash_value(key); | 421 | 37.4k | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18TypeWitnessRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 62 | static unsigned getHashValue(const RequestKey &key) { | 420 | 62 | return hash_value(key); | 421 | 62 | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AssociatedConformanceRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 994 | static unsigned getHashValue(const RequestKey &key) { | 420 | 994 | return hash_value(key); | 421 | 994 | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ValueWitnessRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 3 | static unsigned getHashValue(const RequestKey &key) { | 420 | 3 | return hash_value(key); | 421 | 3 | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37LookupAllConformancesInContextRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 24.7k | static unsigned getHashValue(const RequestKey &key) { | 420 | 24.7k | return hash_value(key); | 421 | 24.7k | } |
RawComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17RawCommentRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 18.5k | static unsigned getHashValue(const RequestKey &key) { | 420 | 18.5k | return hash_value(key); | 421 | 18.5k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE12getHashValueERKS6_ Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IsSingleValueStmtRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 26.7k | static unsigned getHashValue(const RequestKey &key) { | 420 | 26.7k | return hash_value(key); | 421 | 26.7k | } |
Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18BreakTargetRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 219 | static unsigned getHashValue(const RequestKey &key) { | 420 | 219 | return hash_value(key); | 421 | 219 | } |
Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ContinueTargetRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 82 | static unsigned getHashValue(const RequestKey &key) { | 420 | 82 | return hash_value(key); | 421 | 82 | } |
Unexecuted instantiation: Type.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20IsNoncopyableRequestEvEEvE12getHashValueERKS6_ TypeCheckRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RequirementRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 16.9k | static unsigned getHashValue(const RequestKey &key) { | 420 | 16.9k | return hash_value(key); | 421 | 16.9k | } |
TypeRefinementContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40ExpandChildTypeRefinementContextsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 62.8k | static unsigned getHashValue(const RequestKey &key) { | 420 | 62.8k | return hash_value(key); | 421 | 62.8k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE12getHashValueERKS6_ |
422 | 32.8M | static unsigned getHashValue(const Request &request) { |
423 | 32.8M | return hash_value(request); |
424 | 32.8M | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE12getHashValueERKS5_ ClangSyntaxPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 22.2k | static unsigned getHashValue(const Request &request) { | 423 | 22.2k | return hash_value(request); | 424 | 22.2k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Frontend.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IDEInspectionFileRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ConstExtract.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ConstantValueInfoRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: GenClass.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: GenDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: GenDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: GenEnum.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: GenHeap.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: GenMeta.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE12getHashValueERKS5_ IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_12IRGenRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 49 | static unsigned getHashValue(const Request &request) { | 423 | 49 | return hash_value(request); | 424 | 49 | } |
SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 78 | static unsigned getHashValue(const Request &request) { | 423 | 78 | return hash_value(request); | 424 | 78 | } |
Common.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.01k | static unsigned getHashValue(const Request &request) { | 423 | 1.01k | return hash_value(request); | 424 | 1.01k | } |
Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDERequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ResolveProtocolNameRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29CollectOverriddenDeclsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24TypeRelationCheckRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Serialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: BuilderTransform.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PreCheckResultBuilderRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: CSApply.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE12getHashValueERKS5_ CSRanking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32CompareDeclSpecializationRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 46.3k | static unsigned getHashValue(const Request &request) { | 423 | 46.3k | return hash_value(request); | 424 | 46.3k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29EnumElementExprPatternRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE12getHashValueERKS5_ CSStep.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDeclRefinementOfRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 12.0k | static unsigned getHashValue(const Request &request) { | 423 | 12.0k | return hash_value(request); | 424 | 12.0k | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35HasUserDefinedDesignatedInitRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 3.11k | static unsigned getHashValue(const Request &request) { | 423 | 3.11k | return hash_value(request); | 424 | 3.11k | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_44AreAllStoredPropertiesDefaultInitableRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 782 | static unsigned getHashValue(const Request &request) { | 423 | 782 | return hash_value(request); | 424 | 782 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE12getHashValueERKS5_ ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ClosureHasExplicitResultRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 743 | static unsigned getHashValue(const Request &request) { | 423 | 743 | return hash_value(request); | 424 | 743 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsCCompatibleFuncDeclRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS5_ TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35DistributedModuleIsAvailableRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 28 | static unsigned getHashValue(const Request &request) { | 423 | 28 | return hash_value(request); | 424 | 28 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CheckDistributedFunctionRequestEvEEvE12getHashValueERKS5_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ValidatePrecedenceGroupRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 3.68k | static unsigned getHashValue(const Request &request) { | 423 | 3.68k | return hash_value(request); | 424 | 3.68k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE12getHashValueERKS5_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 13.5k | static unsigned getHashValue(const Request &request) { | 423 | 13.5k | return hash_value(request); | 424 | 13.5k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34TypeCheckObjCImplementationRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE12getHashValueERKS5_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CheckRedeclarationRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 4.59k | static unsigned getHashValue(const Request &request) { | 423 | 4.59k | return hash_value(request); | 424 | 4.59k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE12getHashValueERKS5_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ApplyAccessNoteRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 326k | static unsigned getHashValue(const Request &request) { | 423 | 326k | return hash_value(request); | 424 | 326k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE12getHashValueERKS5_ TypeCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18DefaultTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 163k | static unsigned getHashValue(const Request &request) { | 423 | 163k | return hash_value(request); | 424 | 163k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31HasNoncopyableAnnotationRequestEvEEvE12getHashValueERKS5_ TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 8 | static unsigned getHashValue(const Request &request) { | 423 | 8 | return hash_value(request); | 424 | 8 | } |
TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CompilerPluginLoadRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 8 | static unsigned getHashValue(const Request &request) { | 423 | 8 | return hash_value(request); | 424 | 8 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE12getHashValueERKS5_ TypeCheckPattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18PatternTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 37.1k | static unsigned getHashValue(const Request &request) { | 423 | 37.1k | return hash_value(request); | 424 | 37.1k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE12getHashValueERKS5_ TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 188 | static unsigned getHashValue(const Request &request) { | 423 | 188 | return hash_value(request); | 424 | 188 | } |
TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 3.66k | static unsigned getHashValue(const Request &request) { | 423 | 3.66k | return hash_value(request); | 424 | 3.66k | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS5_ TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 20.1k | static unsigned getHashValue(const Request &request) { | 423 | 20.1k | return hash_value(request); | 424 | 20.1k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE12getHashValueERKS5_ TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperLValuenessRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 150 | static unsigned getHashValue(const Request &request) { | 423 | 150 | return hash_value(request); | 424 | 150 | } |
TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20ExpandAccessorMacrosEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 27.8k | static unsigned getHashValue(const Request &request) { | 423 | 27.8k | return hash_value(request); | 424 | 27.8k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26TypeCheckSourceFileRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 163 | static unsigned getHashValue(const Request &request) { | 423 | 163 | return hash_value(request); | 424 | 163 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49CheckInconsistentImplementationOnlyImportsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 574 | static unsigned getHashValue(const Request &request) { | 423 | 574 | return hash_value(request); | 424 | 574 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38CheckInconsistentSPIOnlyImportsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 574 | static unsigned getHashValue(const Request &request) { | 423 | 574 | return hash_value(request); | 424 | 574 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36CheckInconsistentAccessLevelOnImportEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 574 | static unsigned getHashValue(const Request &request) { | 423 | 574 | return hash_value(request); | 424 | 574 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41CheckInconsistentWeakLinkedImportsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 574 | static unsigned getHashValue(const Request &request) { | 423 | 574 | return hash_value(request); | 424 | 574 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 7.82k | static unsigned getHashValue(const Request &request) { | 423 | 7.82k | return hash_value(request); | 424 | 7.82k | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ObjCInterfaceAndImplementationRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IDEInspectionSecondPassRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ParseRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEEvE12getHashValueERKS5_ ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 5 | static unsigned getHashValue(const Request &request) { | 423 | 5 | return hash_value(request); | 424 | 5 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 36 | static unsigned getHashValue(const Request &request) { | 423 | 36 | return hash_value(request); | 424 | 36 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30TypeEraserHasViableInitRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveTypeEraserTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ResolveRawLayoutLikeTypeRequestEvEEvE12getHashValueERKS5_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SpecializeAttrTargetDeclRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 4.14k | static unsigned getHashValue(const Request &request) { | 423 | 4.14k | return hash_value(request); | 424 | 4.14k | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36SerializeAttrGenericSignatureRequestEvEEvE12getHashValueERKS5_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39DifferentiableAttributeTypeCheckRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 2.57k | static unsigned getHashValue(const Request &request) { | 423 | 2.57k | return hash_value(request); | 424 | 2.57k | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DerivativeAttrOriginalDeclRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 2.86k | static unsigned getHashValue(const Request &request) { | 423 | 2.86k | return hash_value(request); | 424 | 2.86k | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29ImplementsAttrProtocolRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 201 | static unsigned getHashValue(const Request &request) { | 423 | 201 | return hash_value(request); | 424 | 201 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38InitAccessorReferencedVariablesRequestEvEEvE12getHashValueERKS5_ Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33SemanticAvailableRangeAttrRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 890 | static unsigned getHashValue(const Request &request) { | 423 | 890 | return hash_value(request); | 424 | 890 | } |
Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30SemanticUnavailableAttrRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 239k | static unsigned getHashValue(const Request &request) { | 423 | 239k | return hash_value(request); | 424 | 239k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ExpandMemberAttributeMacrosEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.13M | static unsigned getHashValue(const Request &request) { | 423 | 1.13M | return hash_value(request); | 424 | 1.13M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 438k | static unsigned getHashValue(const Request &request) { | 423 | 438k | return hash_value(request); | 424 | 438k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 649 | static unsigned getHashValue(const Request &request) { | 423 | 649 | return hash_value(request); | 424 | 649 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 3.24M | static unsigned getHashValue(const Request &request) { | 423 | 3.24M | return hash_value(request); | 424 | 3.24M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ThrownTypeRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsAccessorTransparentRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 29 | static unsigned getHashValue(const Request &request) { | 423 | 29 | return hash_value(request); | 424 | 29 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericParamListRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericSignatureRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 655k | static unsigned getHashValue(const Request &request) { | 423 | 655k | return hash_value(request); | 424 | 655k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ScopedImportLookupRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExtendedNominalRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 89 | static unsigned getHashValue(const Request &request) { | 423 | 89 | return hash_value(request); | 424 | 89 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31DefaultAndMaxAccessLevelRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 6 | static unsigned getHashValue(const Request &request) { | 423 | 6 | return hash_value(request); | 424 | 6 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 33.3k | static unsigned getHashValue(const Request &request) { | 423 | 33.3k | return hash_value(request); | 424 | 33.3k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26PatternBindingEntryRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30RequiresOpaqueAccessorsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.07k | static unsigned getHashValue(const Request &request) { | 423 | 1.07k | return hash_value(request); | 424 | 1.07k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36RequiresOpaqueModifyCoroutineRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 973 | static unsigned getHashValue(const Request &request) { | 423 | 973 | return hash_value(request); | 424 | 973 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25SynthesizeAccessorRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 9.85k | static unsigned getHashValue(const Request &request) { | 423 | 9.85k | return hash_value(request); | 424 | 9.85k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsGetterMutatingRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.64k | static unsigned getHashValue(const Request &request) { | 423 | 1.64k | return hash_value(request); | 424 | 1.64k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsSetterMutatingRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.82k | static unsigned getHashValue(const Request &request) { | 423 | 1.82k | return hash_value(request); | 424 | 1.82k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26OpaqueReadOwnershipRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 4.01k | static unsigned getHashValue(const Request &request) { | 423 | 4.01k | return hash_value(request); | 424 | 4.01k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 15.2k | static unsigned getHashValue(const Request &request) { | 423 | 15.2k | return hash_value(request); | 424 | 15.2k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 70.0k | static unsigned getHashValue(const Request &request) { | 423 | 70.0k | return hash_value(request); | 424 | 70.0k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 10 | static unsigned getHashValue(const Request &request) { | 423 | 10 | return hash_value(request); | 424 | 10 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13IsObjCRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 118k | static unsigned getHashValue(const Request &request) { | 423 | 118k | return hash_value(request); | 424 | 118k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsFinalRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 395 | static unsigned getHashValue(const Request &request) { | 423 | 395 | return hash_value(request); | 424 | 395 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsEscapableRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16IsDynamicRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 3.56k | static unsigned getHashValue(const Request &request) { | 423 | 3.56k | return hash_value(request); | 424 | 3.56k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30DynamicallyReplacedDeclRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 273k | static unsigned getHashValue(const Request &request) { | 423 | 273k | return hash_value(request); | 424 | 273k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36IsImplicitlyUnwrappedOptionalRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InterfaceTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 5.30M | static unsigned getHashValue(const Request &request) { | 423 | 5.30M | return hash_value(request); | 424 | 5.30M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18AccessLevelRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 102k | static unsigned getHashValue(const Request &request) { | 423 | 102k | return hash_value(request); | 424 | 102k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31HasNoncopyableAnnotationRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23StoredPropertiesRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 5.95M | static unsigned getHashValue(const Request &request) { | 423 | 5.95M | return hash_value(request); | 424 | 5.95M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29InitAccessorPropertiesRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 3.12k | static unsigned getHashValue(const Request &request) { | 423 | 3.12k | return hash_value(request); | 424 | 3.12k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31MemberwiseInitPropertiesRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.77k | static unsigned getHashValue(const Request &request) { | 423 | 1.77k | return hash_value(request); | 424 | 1.77k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40StoredPropertiesAndMissingMembersRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 5.11k | static unsigned getHashValue(const Request &request) { | 423 | 5.11k | return hash_value(request); | 424 | 5.11k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30PropertyWrapperTypeInfoRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.71k | static unsigned getHashValue(const Request &request) { | 423 | 1.71k | return hash_value(request); | 424 | 1.71k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsActorRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.55M | static unsigned getHashValue(const Request &request) { | 423 | 1.55M | return hash_value(request); | 424 | 1.55M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDistributedActorRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 409k | static unsigned getHashValue(const Request &request) { | 423 | 409k | return hash_value(request); | 424 | 409k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21UnderlyingTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 2.26k | static unsigned getHashValue(const Request &request) { | 423 | 2.26k | return hash_value(request); | 424 | 2.26k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21StructuralTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 37 | static unsigned getHashValue(const Request &request) { | 423 | 37 | return hash_value(request); | 424 | 37 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28DefaultDefinitionTypeRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18EnumRawTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 11.0k | static unsigned getHashValue(const Request &request) { | 423 | 11.0k | return hash_value(request); | 424 | 11.0k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24HasMemberwiseInitRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.70k | static unsigned getHashValue(const Request &request) { | 423 | 1.70k | return hash_value(request); | 424 | 1.70k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SynthesizeMemberwiseInitRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 833 | static unsigned getHashValue(const Request &request) { | 423 | 833 | return hash_value(request); | 424 | 833 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ResolveEffectiveMemberwiseInitRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 2.18k | static unsigned getHashValue(const Request &request) { | 423 | 2.18k | return hash_value(request); | 424 | 2.18k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21HasDefaultInitRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.42k | static unsigned getHashValue(const Request &request) { | 423 | 1.42k | return hash_value(request); | 424 | 1.42k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28SynthesizeDefaultInitRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 240 | static unsigned getHashValue(const Request &request) { | 423 | 240 | return hash_value(request); | 424 | 240 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GlobalActorInstanceRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 101 | static unsigned getHashValue(const Request &request) { | 423 | 101 | return hash_value(request); | 424 | 101 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20GetDestructorRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21IsDefaultActorRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 4.26k | static unsigned getHashValue(const Request &request) { | 423 | 4.26k | return hash_value(request); | 424 | 4.26k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39HasMissingDesignatedInitializersRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37InheritsSuperclassInitializersRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 16 | static unsigned getHashValue(const Request &request) { | 423 | 16 | return hash_value(request); | 424 | 16 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ClassAncestryFlagsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 15.7k | static unsigned getHashValue(const Request &request) { | 423 | 15.7k | return hash_value(request); | 424 | 15.7k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 609 | static unsigned getHashValue(const Request &request) { | 423 | 609 | return hash_value(request); | 424 | 609 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25InheritedProtocolsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.38k | static unsigned getHashValue(const Request &request) { | 423 | 1.38k | return hash_value(request); | 424 | 1.38k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolRequirementsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.30k | static unsigned getHashValue(const Request &request) { | 423 | 1.30k | return hash_value(request); | 424 | 1.30k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 955 | static unsigned getHashValue(const Request &request) { | 423 | 955 | return hash_value(request); | 424 | 955 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProtocolRequiresClassRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 23 | static unsigned getHashValue(const Request &request) { | 423 | 23 | return hash_value(request); | 424 | 23 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ExistentialConformsToSelfRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_42HasSelfOrAssociatedTypeRequirementsRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29PrimaryAssociatedTypesRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 6.70k | static unsigned getHashValue(const Request &request) { | 423 | 6.70k | return hash_value(request); | 424 | 6.70k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29StructuralRequirementsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 819 | static unsigned getHashValue(const Request &request) { | 423 | 819 | return hash_value(request); | 424 | 819 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeAliasRequirementsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 355 | static unsigned getHashValue(const Request &request) { | 423 | 355 | return hash_value(request); | 424 | 355 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolDependenciesRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 150k | static unsigned getHashValue(const Request &request) { | 423 | 150k | return hash_value(request); | 424 | 150k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27RequirementSignatureRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 8.46k | static unsigned getHashValue(const Request &request) { | 423 | 8.46k | return hash_value(request); | 424 | 8.46k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 565 | static unsigned getHashValue(const Request &request) { | 423 | 565 | return hash_value(request); | 424 | 565 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.14M | static unsigned getHashValue(const Request &request) { | 423 | 1.14M | return hash_value(request); | 424 | 1.14M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22StorageImplInfoRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 8.41k | static unsigned getHashValue(const Request &request) { | 423 | 8.41k | return hash_value(request); | 424 | 8.41k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24SetterAccessLevelRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasInitAccessorRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 260k | static unsigned getHashValue(const Request &request) { | 423 | 260k | return hash_value(request); | 424 | 260k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 77.1k | static unsigned getHashValue(const Request &request) { | 423 | 77.1k | return hash_value(request); | 424 | 77.1k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20NamingPatternRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 543 | static unsigned getHashValue(const Request &request) { | 423 | 543 | return hash_value(request); | 424 | 543 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParamSpecifierRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 16.8k | static unsigned getHashValue(const Request &request) { | 423 | 16.8k | return hash_value(request); | 424 | 16.8k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 2.97M | static unsigned getHashValue(const Request &request) { | 423 | 2.97M | return hash_value(request); | 424 | 2.97M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34AttachedPropertyWrapperTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.24k | static unsigned getHashValue(const Request &request) { | 423 | 1.24k | return hash_value(request); | 424 | 1.24k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.29k | static unsigned getHashValue(const Request &request) { | 423 | 1.29k | return hash_value(request); | 424 | 1.29k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 91.2k | static unsigned getHashValue(const Request &request) { | 423 | 91.2k | return hash_value(request); | 424 | 91.2k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 27.3k | static unsigned getHashValue(const Request &request) { | 423 | 27.3k | return hash_value(request); | 424 | 27.3k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperMutabilityRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 44.5k | static unsigned getHashValue(const Request &request) { | 423 | 44.5k | return hash_value(request); | 424 | 44.5k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 14 | static unsigned getHashValue(const Request &request) { | 423 | 14 | return hash_value(request); | 424 | 14 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DefaultArgumentInitContextRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentExprRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 62 | static unsigned getHashValue(const Request &request) { | 423 | 62 | return hash_value(request); | 424 | 62 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentTypeRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResultBuilderTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 38.9k | static unsigned getHashValue(const Request &request) { | 423 | 38.9k | return hash_value(request); | 424 | 38.9k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AttachedResultBuilderRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 81.2k | static unsigned getHashValue(const Request &request) { | 423 | 81.2k | return hash_value(request); | 424 | 81.2k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ResultTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 181k | static unsigned getHashValue(const Request &request) { | 423 | 181k | return hash_value(request); | 424 | 181k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 781 | static unsigned getHashValue(const Request &request) { | 423 | 781 | return hash_value(request); | 424 | 781 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ParseAbstractFunctionBodyRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 186k | static unsigned getHashValue(const Request &request) { | 423 | 186k | return hash_value(request); | 424 | 186k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckFunctionBodyRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 5.61k | static unsigned getHashValue(const Request &request) { | 423 | 5.61k | return hash_value(request); | 424 | 5.61k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsFunctionBodySkippedRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26NeedsNewVTableEntryRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 4.54k | static unsigned getHashValue(const Request &request) { | 423 | 4.54k | return hash_value(request); | 424 | 4.54k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 3.52k | static unsigned getHashValue(const Request &request) { | 423 | 3.52k | return hash_value(request); | 424 | 3.52k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15IsStaticRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19SimpleDidSetRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SelfAccessKindRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20EnumRawValuesRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 50.4k | static unsigned getHashValue(const Request &request) { | 423 | 50.4k | return hash_value(request); | 424 | 50.4k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19BodyInitKindRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 2.92k | static unsigned getHashValue(const Request &request) { | 423 | 2.92k | return hash_value(request); | 424 | 2.92k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 8.65k | static unsigned getHashValue(const Request &request) { | 423 | 8.65k | return hash_value(request); | 424 | 8.65k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ActorIsolationRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.87M | static unsigned getHashValue(const Request &request) { | 423 | 1.87M | return hash_value(request); | 424 | 1.87M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 11 | static unsigned getHashValue(const Request &request) { | 423 | 11 | return hash_value(request); | 424 | 11 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26FragileFunctionKindRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 250k | static unsigned getHashValue(const Request &request) { | 423 | 250k | return hash_value(request); | 424 | 250k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 306k | static unsigned getHashValue(const Request &request) { | 423 | 306k | return hash_value(request); | 424 | 306k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ABIMembersRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 14.0k | static unsigned getHashValue(const Request &request) { | 423 | 14.0k | return hash_value(request); | 424 | 14.0k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17AllMembersRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 17.7k | static unsigned getHashValue(const Request &request) { | 423 | 17.7k | return hash_value(request); | 424 | 17.7k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_48GetDistributedActorArgumentDecodingMethodRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_43GetDistributedActorInvocationDecoderRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49GetDistributedRemoteCallTargetInitFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEEvE12getHashValueERKS5_ DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_50GetDistributedActorSystemRemoteCallFunctionRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 4 | static unsigned getHashValue(const Request &request) { | 423 | 4 | return hash_value(request); | 424 | 4 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetDistributedThunkRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40GetDistributedActorSystemPropertyRequestEvEEvE12getHashValueERKS5_ DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36GetDistributedActorIDPropertyRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 24 | static unsigned getHashValue(const Request &request) { | 423 | 24 | return hash_value(request); | 424 | 24 | } |
DocComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27SemanticBriefCommentRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.87k | static unsigned getHashValue(const Request &request) { | 423 | 1.87k | return hash_value(request); | 424 | 1.87k | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36PolymorphicEffectRequirementsRequestEvEEvE12getHashValueERKS5_ Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PolymorphicEffectKindRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 160k | static unsigned getHashValue(const Request &request) { | 423 | 160k | return hash_value(request); | 424 | 160k | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ConformanceHasEffectRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CallerSideDefaultArgExprRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS5_ Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 719k | static unsigned getHashValue(const Request &request) { | 423 | 719k | return hash_value(request); | 424 | 719k | } |
GenericSignature.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 24.8k | static unsigned getHashValue(const Request &request) { | 423 | 24.8k | return hash_value(request); | 424 | 24.8k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22IsNonUserModuleRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 21 | static unsigned getHashValue(const Request &request) { | 423 | 21 | return hash_value(request); | 424 | 21 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleImplicitImportsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 587 | static unsigned getHashValue(const Request &request) { | 423 | 587 | return hash_value(request); | 424 | 587 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PrimarySourceFilesRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 469 | static unsigned getHashValue(const Request &request) { | 423 | 469 | return hash_value(request); | 424 | 469 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 6 | static unsigned getHashValue(const Request &request) { | 423 | 6 | return hash_value(request); | 424 | 6 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.18M | static unsigned getHashValue(const Request &request) { | 423 | 1.18M | return hash_value(request); | 424 | 1.18M | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39ImplicitKnownProtocolConformanceRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 23.2k | static unsigned getHashValue(const Request &request) { | 423 | 23.2k | return hash_value(request); | 424 | 23.2k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41GetDistributedActorImplicitCodableRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29HasImportsMatchingFlagRequestEvEEvE12getHashValueERKS5_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16SPIGroupsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.61M | static unsigned getHashValue(const Request &request) { | 423 | 1.61M | return hash_value(request); | 424 | 1.61M | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ModuleLibraryLevelRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 380 | static unsigned getHashValue(const Request &request) { | 423 | 380 | return hash_value(request); | 424 | 380 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ParseTopLevelDeclsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 35.8k | static unsigned getHashValue(const Request &request) { | 423 | 35.8k | return hash_value(request); | 424 | 35.8k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExportedSourceFileRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 340 | static unsigned getHashValue(const Request &request) { | 423 | 340 | return hash_value(request); | 424 | 340 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22GetSourceFileAsyncNodeEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 5.15k | static unsigned getHashValue(const Request &request) { | 423 | 5.15k | return hash_value(request); | 424 | 5.15k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 18.0k | static unsigned getHashValue(const Request &request) { | 423 | 18.0k | return hash_value(request); | 424 | 18.0k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE12getHashValueERKS5_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 78.7k | static unsigned getHashValue(const Request &request) { | 423 | 78.7k | return hash_value(request); | 424 | 78.7k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 36.9k | static unsigned getHashValue(const Request &request) { | 423 | 36.9k | return hash_value(request); | 424 | 36.9k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsCallAsFunctionNominalRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 164 | static unsigned getHashValue(const Request &request) { | 423 | 164 | return hash_value(request); | 424 | 164 | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38HasDynamicMemberLookupAttributeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 53.6k | static unsigned getHashValue(const Request &request) { | 423 | 53.6k | return hash_value(request); | 424 | 53.6k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 241 | static unsigned getHashValue(const Request &request) { | 423 | 241 | return hash_value(request); | 424 | 241 | } |
OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LookupInfixOperatorRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 11.2k | static unsigned getHashValue(const Request &request) { | 423 | 11.2k | return hash_value(request); | 424 | 11.2k | } |
OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27LookupPrefixOperatorRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 6 | static unsigned getHashValue(const Request &request) { | 423 | 6 | return hash_value(request); | 424 | 6 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPostfixOperatorRequestEvEEvE12getHashValueERKS5_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPrecedenceGroupRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 4.05k | static unsigned getHashValue(const Request &request) { | 423 | 4.05k | return hash_value(request); | 424 | 4.05k | } |
Unexecuted instantiation: Pattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ExprPatternMatchRequestEvEEvE12getHashValueERKS5_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ConditionalRequirementsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 331k | static unsigned getHashValue(const Request &request) { | 423 | 331k | return hash_value(request); | 424 | 331k | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18TypeWitnessRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AssociatedConformanceRequestEvEEvE12getHashValueERKS5_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ValueWitnessRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 834 | static unsigned getHashValue(const Request &request) { | 423 | 834 | return hash_value(request); | 424 | 834 | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37LookupAllConformancesInContextRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 89.8k | static unsigned getHashValue(const Request &request) { | 423 | 89.8k | return hash_value(request); | 424 | 89.8k | } |
RawComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17RawCommentRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 11.6k | static unsigned getHashValue(const Request &request) { | 423 | 11.6k | return hash_value(request); | 424 | 11.6k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE12getHashValueERKS5_ Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IsSingleValueStmtRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 12.7k | static unsigned getHashValue(const Request &request) { | 423 | 12.7k | return hash_value(request); | 424 | 12.7k | } |
Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18BreakTargetRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 500 | static unsigned getHashValue(const Request &request) { | 423 | 500 | return hash_value(request); | 424 | 500 | } |
Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ContinueTargetRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 243 | static unsigned getHashValue(const Request &request) { | 423 | 243 | return hash_value(request); | 424 | 243 | } |
Unexecuted instantiation: Type.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20IsNoncopyableRequestEvEEvE12getHashValueERKS5_ TypeCheckRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RequirementRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 22.5k | static unsigned getHashValue(const Request &request) { | 423 | 22.5k | return hash_value(request); | 424 | 22.5k | } |
TypeRefinementContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40ExpandChildTypeRefinementContextsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 270k | static unsigned getHashValue(const Request &request) { | 423 | 270k | return hash_value(request); | 424 | 270k | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE12getHashValueERKS5_ |
425 | 129M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { |
426 | 129M | return lhs == rhs; |
427 | 129M | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18OptimizedIRRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE7isEqualERKS6_S9_ ClangSyntaxPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 236k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 236k | return lhs == rhs; | 427 | 236k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Frontend.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IDEInspectionFileRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ConstExtract.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ConstantValueInfoRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: GenClass.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: GenDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: GenDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: GenEnum.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: GenHeap.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: GenMeta.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE7isEqualERKS6_S9_ IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_12IRGenRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 3.43k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 3.43k | return lhs == rhs; | 427 | 3.43k | } |
Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17LoweredSILRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20PublicSymbolsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18GenerateTBDRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13APIGenRequestEvEEvE7isEqualERKS6_S9_ SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 5.46k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 5.46k | return lhs == rhs; | 427 | 5.46k | } |
Unexecuted instantiation: SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParseSILModuleRequestEvEEvE7isEqualERKS6_S9_ Common.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.22k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.22k | return lhs == rhs; | 427 | 2.22k | } |
Unexecuted instantiation: PassManager.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExecuteSILPipelineRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDERequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ResolveProtocolNameRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29CollectOverriddenDeclsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24TypeRelationCheckRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Serialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ParseSIL.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: BuilderTransform.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PreCheckResultBuilderRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: CSApply.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE7isEqualERKS6_S9_ CSRanking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32CompareDeclSpecializationRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 383k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 383k | return lhs == rhs; | 427 | 383k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29EnumElementExprPatternRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ CSStep.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDeclRefinementOfRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 54.2k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 54.2k | return lhs == rhs; | 427 | 54.2k | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE7isEqualERKS6_S9_ CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35HasUserDefinedDesignatedInitRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 35.1k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 35.1k | return lhs == rhs; | 427 | 35.1k | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_44AreAllStoredPropertiesDefaultInitableRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 15.2k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 15.2k | return lhs == rhs; | 427 | 15.2k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE7isEqualERKS6_S9_ ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ClosureHasExplicitResultRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 13.1k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 13.1k | return lhs == rhs; | 427 | 13.1k | } |
DerivedConformanceDifferentiable.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 6.62k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 6.62k | return lhs == rhs; | 427 | 6.62k | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: MiscDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsCCompatibleFuncDeclRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE7isEqualERKS6_S9_ TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35DistributedModuleIsAvailableRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 308 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 308 | return lhs == rhs; | 427 | 308 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CheckDistributedFunctionRequestEvEEvE7isEqualERKS6_S9_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ValidatePrecedenceGroupRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 88.9k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 88.9k | return lhs == rhs; | 427 | 88.9k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE7isEqualERKS6_S9_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 182k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 182k | return lhs == rhs; | 427 | 182k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34TypeCheckObjCImplementationRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE7isEqualERKS6_S9_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CheckRedeclarationRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 66.5k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 66.5k | return lhs == rhs; | 427 | 66.5k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE7isEqualERKS6_S9_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ApplyAccessNoteRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 4.39M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 4.39M | return lhs == rhs; | 427 | 4.39M | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE7isEqualERKS6_S9_ TypeCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18DefaultTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 159k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 159k | return lhs == rhs; | 427 | 159k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31HasNoncopyableAnnotationRequestEvEEvE7isEqualERKS6_S9_ TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 336 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 336 | return lhs == rhs; | 427 | 336 | } |
TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CompilerPluginLoadRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 280 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 280 | return lhs == rhs; | 427 | 280 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ TypeCheckPattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18PatternTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 544k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 544k | return lhs == rhs; | 427 | 544k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE7isEqualERKS6_S9_ TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 9.18k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 9.18k | return lhs == rhs; | 427 | 9.18k | } |
TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 17.7k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 17.7k | return lhs == rhs; | 427 | 17.7k | } |
TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 342 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 342 | return lhs == rhs; | 427 | 342 | } |
TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 482k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 482k | return lhs == rhs; | 427 | 482k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27PreCheckFunctionBodyRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE7isEqualERKS6_S9_ TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperLValuenessRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.18k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.18k | return lhs == rhs; | 427 | 1.18k | } |
TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20ExpandAccessorMacrosEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 680k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 680k | return lhs == rhs; | 427 | 680k | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ResolveTypeRequestEvEEvE7isEqualERKS6_S9_ TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26TypeCheckSourceFileRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 4.41k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 4.41k | return lhs == rhs; | 427 | 4.41k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49CheckInconsistentImplementationOnlyImportsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 17.7k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 17.7k | return lhs == rhs; | 427 | 17.7k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38CheckInconsistentSPIOnlyImportsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 25.7k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 25.7k | return lhs == rhs; | 427 | 25.7k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36CheckInconsistentAccessLevelOnImportEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 25.4k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 25.4k | return lhs == rhs; | 427 | 25.4k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41CheckInconsistentWeakLinkedImportsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 17.7k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 17.7k | return lhs == rhs; | 427 | 17.7k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 189k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 189k | return lhs == rhs; | 427 | 189k | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckASTNodeAtLocRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.09M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.09M | return lhs == rhs; | 427 | 2.09M | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ObjCInterfaceAndImplementationRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ClangCategoryLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportName.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsSafeUseOfCxxDeclEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20CxxRecordAsSwiftTypeEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IDEInspectionSecondPassRequestEvEEvE7isEqualERKS6_S9_ Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 48.3k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 48.3k | return lhs == rhs; | 427 | 48.3k | } |
Unexecuted instantiation: ParseRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: AccessRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31TypeDeclsFromWhereClauseRequestEvEEvE7isEqualERKS6_S9_ ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.07M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.07M | return lhs == rhs; | 427 | 2.07M | } |
ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 280 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 280 | return lhs == rhs; | 427 | 280 | } |
ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 280 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 280 | return lhs == rhs; | 427 | 280 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEEvE7isEqualERKS6_S9_ ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 280 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 280 | return lhs == rhs; | 427 | 280 | } |
ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 280 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 280 | return lhs == rhs; | 427 | 280 | } |
Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ASTPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE7isEqualERKS6_S9_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 420 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 420 | return lhs == rhs; | 427 | 420 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30TypeEraserHasViableInitRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveTypeEraserTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ResolveRawLayoutLikeTypeRequestEvEEvE7isEqualERKS6_S9_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SpecializeAttrTargetDeclRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 11.2k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 11.2k | return lhs == rhs; | 427 | 11.2k | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36SerializeAttrGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39DifferentiableAttributeTypeCheckRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 8.19k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 8.19k | return lhs == rhs; | 427 | 8.19k | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DerivativeAttrOriginalDeclRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 21.0k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 21.0k | return lhs == rhs; | 427 | 21.0k | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29ImplementsAttrProtocolRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 7.54k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 7.54k | return lhs == rhs; | 427 | 7.54k | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38InitAccessorReferencedVariablesRequestEvEEvE7isEqualERKS6_S9_ Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33SemanticAvailableRangeAttrRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 12.4k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 12.4k | return lhs == rhs; | 427 | 12.4k | } |
Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30SemanticUnavailableAttrRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.12M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.12M | return lhs == rhs; | 427 | 2.12M | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ExpandMemberAttributeMacrosEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 15.9M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 15.9M | return lhs == rhs; | 427 | 15.9M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 5.94M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 5.94M | return lhs == rhs; | 427 | 5.94M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 5.17k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 5.17k | return lhs == rhs; | 427 | 5.17k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 10.4M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 10.4M | return lhs == rhs; | 427 | 10.4M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ThrownTypeRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsAccessorTransparentRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 600 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 600 | return lhs == rhs; | 427 | 600 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericParamListRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.68M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.68M | return lhs == rhs; | 427 | 1.68M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ScopedImportLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExtendedNominalRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.14k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.14k | return lhs == rhs; | 427 | 2.14k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31DefaultAndMaxAccessLevelRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 145 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 145 | return lhs == rhs; | 427 | 145 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 59.4k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 59.4k | return lhs == rhs; | 427 | 59.4k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26PatternBindingEntryRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 9.73k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 9.73k | return lhs == rhs; | 427 | 9.73k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30RequiresOpaqueAccessorsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.49k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.49k | return lhs == rhs; | 427 | 1.49k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36RequiresOpaqueModifyCoroutineRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.43k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.43k | return lhs == rhs; | 427 | 2.43k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25SynthesizeAccessorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 8.25k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 8.25k | return lhs == rhs; | 427 | 8.25k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 173k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 173k | return lhs == rhs; | 427 | 173k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsGetterMutatingRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.74k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.74k | return lhs == rhs; | 427 | 2.74k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsSetterMutatingRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.83k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.83k | return lhs == rhs; | 427 | 2.83k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26OpaqueReadOwnershipRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 10.3k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 10.3k | return lhs == rhs; | 427 | 10.3k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 327k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 327k | return lhs == rhs; | 427 | 327k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 116k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 116k | return lhs == rhs; | 427 | 116k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 280 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 280 | return lhs == rhs; | 427 | 280 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13IsObjCRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 320k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 320k | return lhs == rhs; | 427 | 320k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsFinalRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 673 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 673 | return lhs == rhs; | 427 | 673 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsEscapableRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16IsDynamicRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 18.4k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 18.4k | return lhs == rhs; | 427 | 18.4k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30DynamicallyReplacedDeclRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 3.61M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 3.61M | return lhs == rhs; | 427 | 3.61M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36IsImplicitlyUnwrappedOptionalRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InterfaceTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 19.0M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 19.0M | return lhs == rhs; | 427 | 19.0M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18AccessLevelRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 106k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 106k | return lhs == rhs; | 427 | 106k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31HasNoncopyableAnnotationRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23StoredPropertiesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 3.54M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 3.54M | return lhs == rhs; | 427 | 3.54M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29InitAccessorPropertiesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 24.6k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 24.6k | return lhs == rhs; | 427 | 24.6k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31MemberwiseInitPropertiesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 23.0k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 23.0k | return lhs == rhs; | 427 | 23.0k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40StoredPropertiesAndMissingMembersRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 19.4k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 19.4k | return lhs == rhs; | 427 | 19.4k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30PropertyWrapperTypeInfoRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.50k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.50k | return lhs == rhs; | 427 | 1.50k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsActorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.15M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.15M | return lhs == rhs; | 427 | 2.15M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDistributedActorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.02M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.02M | return lhs == rhs; | 427 | 1.02M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21UnderlyingTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 3.48k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 3.48k | return lhs == rhs; | 427 | 3.48k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21StructuralTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 570k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 570k | return lhs == rhs; | 427 | 570k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28DefaultDefinitionTypeRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18EnumRawTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 128k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 128k | return lhs == rhs; | 427 | 128k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24HasMemberwiseInitRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 28.2k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 28.2k | return lhs == rhs; | 427 | 28.2k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SynthesizeMemberwiseInitRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 13.3k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 13.3k | return lhs == rhs; | 427 | 13.3k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ResolveEffectiveMemberwiseInitRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 10.7k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 10.7k | return lhs == rhs; | 427 | 10.7k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21HasDefaultInitRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 32.3k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 32.3k | return lhs == rhs; | 427 | 32.3k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28SynthesizeDefaultInitRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 7.70k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 7.70k | return lhs == rhs; | 427 | 7.70k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GlobalActorInstanceRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 910 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 910 | return lhs == rhs; | 427 | 910 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20GetDestructorRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21IsDefaultActorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 6.08k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 6.08k | return lhs == rhs; | 427 | 6.08k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39HasMissingDesignatedInitializersRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 140 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 140 | return lhs == rhs; | 427 | 140 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37InheritsSuperclassInitializersRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 340 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 340 | return lhs == rhs; | 427 | 340 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ClassAncestryFlagsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 24.7k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 24.7k | return lhs == rhs; | 427 | 24.7k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 12.3k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 12.3k | return lhs == rhs; | 427 | 12.3k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25InheritedProtocolsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.58k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.58k | return lhs == rhs; | 427 | 1.58k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolRequirementsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.11k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.11k | return lhs == rhs; | 427 | 2.11k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.70k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.70k | return lhs == rhs; | 427 | 1.70k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProtocolRequiresClassRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 252 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 252 | return lhs == rhs; | 427 | 252 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ExistentialConformsToSelfRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_42HasSelfOrAssociatedTypeRequirementsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 70 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 70 | return lhs == rhs; | 427 | 70 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29PrimaryAssociatedTypesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 4.81k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 4.81k | return lhs == rhs; | 427 | 4.81k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29StructuralRequirementsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 9.62k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 9.62k | return lhs == rhs; | 427 | 9.62k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeAliasRequirementsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 9.34k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 9.34k | return lhs == rhs; | 427 | 9.34k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolDependenciesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 242k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 242k | return lhs == rhs; | 427 | 242k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27RequirementSignatureRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 9.46k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 9.46k | return lhs == rhs; | 427 | 9.46k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 8.98k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 8.98k | return lhs == rhs; | 427 | 8.98k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.80M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.80M | return lhs == rhs; | 427 | 1.80M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22StorageImplInfoRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 9.81k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 9.81k | return lhs == rhs; | 427 | 9.81k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24SetterAccessLevelRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasInitAccessorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.62M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.62M | return lhs == rhs; | 427 | 1.62M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 6.21M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 6.21M | return lhs == rhs; | 427 | 6.21M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20NamingPatternRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 5.18k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 5.18k | return lhs == rhs; | 427 | 5.18k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParamSpecifierRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 19.6k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 19.6k | return lhs == rhs; | 427 | 19.6k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 9.89M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 9.89M | return lhs == rhs; | 427 | 9.89M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34AttachedPropertyWrapperTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 21.4k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 21.4k | return lhs == rhs; | 427 | 21.4k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 20.7k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 20.7k | return lhs == rhs; | 427 | 20.7k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.66M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.66M | return lhs == rhs; | 427 | 1.66M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 482k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 482k | return lhs == rhs; | 427 | 482k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperMutabilityRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 636k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 636k | return lhs == rhs; | 427 | 636k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 224 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 224 | return lhs == rhs; | 427 | 224 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DefaultArgumentInitContextRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentExprRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 552 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 552 | return lhs == rhs; | 427 | 552 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentTypeRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResultBuilderTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 457k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 457k | return lhs == rhs; | 427 | 457k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AttachedResultBuilderRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.79M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.79M | return lhs == rhs; | 427 | 1.79M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ResultTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 383k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 383k | return lhs == rhs; | 427 | 383k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 8.57k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 8.57k | return lhs == rhs; | 427 | 8.57k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ParseAbstractFunctionBodyRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 702k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 702k | return lhs == rhs; | 427 | 702k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckFunctionBodyRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 50.5k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 50.5k | return lhs == rhs; | 427 | 50.5k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsFunctionBodySkippedRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26NeedsNewVTableEntryRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 9.47k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 9.47k | return lhs == rhs; | 427 | 9.47k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.39M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.39M | return lhs == rhs; | 427 | 1.39M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15IsStaticRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19SimpleDidSetRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SelfAccessKindRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20EnumRawValuesRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 771k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 771k | return lhs == rhs; | 427 | 771k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19BodyInitKindRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 44.5k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 44.5k | return lhs == rhs; | 427 | 44.5k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 45.9k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 45.9k | return lhs == rhs; | 427 | 45.9k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ActorIsolationRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 5.33M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 5.33M | return lhs == rhs; | 427 | 5.33M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 343 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 343 | return lhs == rhs; | 427 | 343 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE7isEqualERKS6_S9_ DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26FragileFunctionKindRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.22M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.22M | return lhs == rhs; | 427 | 2.22M | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 447k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 447k | return lhs == rhs; | 427 | 447k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ABIMembersRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 197k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 197k | return lhs == rhs; | 427 | 197k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17AllMembersRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 164k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 164k | return lhs == rhs; | 427 | 164k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_48GetDistributedActorArgumentDecodingMethodRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_43GetDistributedActorInvocationDecoderRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49GetDistributedRemoteCallTargetInitFunctionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEEvE7isEqualERKS6_S9_ DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_50GetDistributedActorSystemRemoteCallFunctionRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 308 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 308 | return lhs == rhs; | 427 | 308 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetDistributedThunkRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40GetDistributedActorSystemPropertyRequestEvEEvE7isEqualERKS6_S9_ DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36GetDistributedActorIDPropertyRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 280 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 280 | return lhs == rhs; | 427 | 280 | } |
DocComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27SemanticBriefCommentRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 44.4k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 44.4k | return lhs == rhs; | 427 | 44.4k | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36PolymorphicEffectRequirementsRequestEvEEvE7isEqualERKS6_S9_ Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PolymorphicEffectKindRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 648k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 648k | return lhs == rhs; | 427 | 648k | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ConformanceHasEffectRequestEvEEvE7isEqualERKS6_S9_ Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CallerSideDefaultArgExprRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 42.9k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 42.9k | return lhs == rhs; | 427 | 42.9k | } |
Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS6_S9_ Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 775k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 775k | return lhs == rhs; | 427 | 775k | } |
GenericSignature.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 85.3k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 85.3k | return lhs == rhs; | 427 | 85.3k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22IsNonUserModuleRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 770 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 770 | return lhs == rhs; | 427 | 770 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleImplicitImportsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 18.7k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 18.7k | return lhs == rhs; | 427 | 18.7k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PrimarySourceFilesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 14.7k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 14.7k | return lhs == rhs; | 427 | 14.7k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 262 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 262 | return lhs == rhs; | 427 | 262 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 858k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 858k | return lhs == rhs; | 427 | 858k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39ImplicitKnownProtocolConformanceRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 92.0k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 92.0k | return lhs == rhs; | 427 | 92.0k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41GetDistributedActorImplicitCodableRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29HasImportsMatchingFlagRequestEvEEvE7isEqualERKS6_S9_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16SPIGroupsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 5.15M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 5.15M | return lhs == rhs; | 427 | 5.15M | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ModuleLibraryLevelRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 6.51k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 6.51k | return lhs == rhs; | 427 | 6.51k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ParseTopLevelDeclsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 57.8k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 57.8k | return lhs == rhs; | 427 | 57.8k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExportedSourceFileRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 21.3k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 21.3k | return lhs == rhs; | 427 | 21.3k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22GetSourceFileAsyncNodeEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 7.00k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 7.00k | return lhs == rhs; | 427 | 7.00k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32LookupConformanceInModuleRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ModuleNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21LookupInModuleRequestEvEEvE7isEqualERKS6_S9_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 197k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 197k | return lhs == rhs; | 427 | 197k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE7isEqualERKS6_S9_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.95M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.95M | return lhs == rhs; | 427 | 1.95M | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 48.6k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 48.6k | return lhs == rhs; | 427 | 48.6k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsCallAsFunctionNominalRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.11k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.11k | return lhs == rhs; | 427 | 2.11k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38HasDynamicMemberLookupAttributeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 159k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 159k | return lhs == rhs; | 427 | 159k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.99k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.99k | return lhs == rhs; | 427 | 1.99k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32SelfBoundsFromWhereClauseRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37SelfBoundsFromGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19DirectLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CXXNamespaceMemberLookupEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22AnyObjectLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22QualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleQualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36UnderlyingTypeDeclsReferencedRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InheritedDeclsReferencedRequestEvEEvE7isEqualERKS6_S9_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LookupInfixOperatorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 49.8k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 49.8k | return lhs == rhs; | 427 | 49.8k | } |
OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27LookupPrefixOperatorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 434 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 434 | return lhs == rhs; | 427 | 434 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPostfixOperatorRequestEvEEvE7isEqualERKS6_S9_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPrecedenceGroupRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 17.3k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 17.3k | return lhs == rhs; | 427 | 17.3k | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Pattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ExprPatternMatchRequestEvEEvE7isEqualERKS6_S9_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ConditionalRequirementsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 760k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 760k | return lhs == rhs; | 427 | 760k | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18TypeWitnessRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.71k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.71k | return lhs == rhs; | 427 | 1.71k | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AssociatedConformanceRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 10.3k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 10.3k | return lhs == rhs; | 427 | 10.3k | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ValueWitnessRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.03k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.03k | return lhs == rhs; | 427 | 1.03k | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37LookupAllConformancesInContextRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 393k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 393k | return lhs == rhs; | 427 | 393k | } |
RawComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17RawCommentRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 214k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 214k | return lhs == rhs; | 427 | 214k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IsSingleValueStmtRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 297k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 297k | return lhs == rhs; | 427 | 297k | } |
Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18BreakTargetRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.95k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.95k | return lhs == rhs; | 427 | 2.95k | } |
Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ContinueTargetRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.41k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.41k | return lhs == rhs; | 427 | 1.41k | } |
Unexecuted instantiation: Type.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20IsNoncopyableRequestEvEEvE7isEqualERKS6_S9_ TypeCheckRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RequirementRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 223k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 223k | return lhs == rhs; | 427 | 223k | } |
TypeRefinementContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40ExpandChildTypeRefinementContextsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.15M | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.15M | return lhs == rhs; | 427 | 1.15M | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE7isEqualERKS6_S9_ |
428 | 123M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { |
429 | 123M | return rhs.isStorageEqual(lhs); |
430 | 123M | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE7isEqualERKS5_RKS6_ ClangSyntaxPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 86.3k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 86.3k | return rhs.isStorageEqual(lhs); | 430 | 86.3k | } |
Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Frontend.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IDEInspectionFileRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ConstExtract.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ConstantValueInfoRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: GenClass.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: GenDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: GenDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: GenEnum.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: GenHeap.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: GenMeta.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE7isEqualERKS5_RKS6_ IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_12IRGenRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 147 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 147 | return rhs.isStorageEqual(lhs); | 430 | 147 | } |
SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 234 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 234 | return rhs.isStorageEqual(lhs); | 430 | 234 | } |
Common.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 3.33k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 3.33k | return rhs.isStorageEqual(lhs); | 430 | 3.33k | } |
Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDERequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ResolveProtocolNameRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29CollectOverriddenDeclsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24TypeRelationCheckRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Serialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: BuilderTransform.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PreCheckResultBuilderRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: CSApply.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE7isEqualERKS5_RKS6_ CSRanking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32CompareDeclSpecializationRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 192k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 192k | return rhs.isStorageEqual(lhs); | 430 | 192k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29EnumElementExprPatternRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE7isEqualERKS5_RKS6_ CSStep.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDeclRefinementOfRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 41.6k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 41.6k | return rhs.isStorageEqual(lhs); | 430 | 41.6k | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35HasUserDefinedDesignatedInitRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 11.2k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 11.2k | return rhs.isStorageEqual(lhs); | 430 | 11.2k | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_44AreAllStoredPropertiesDefaultInitableRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.70k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.70k | return rhs.isStorageEqual(lhs); | 430 | 2.70k | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE7isEqualERKS5_RKS6_ ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ClosureHasExplicitResultRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.59k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.59k | return rhs.isStorageEqual(lhs); | 430 | 2.59k | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsCCompatibleFuncDeclRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35DistributedModuleIsAvailableRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 84 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 84 | return rhs.isStorageEqual(lhs); | 430 | 84 | } |
Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CheckDistributedFunctionRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ValidatePrecedenceGroupRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 15.0k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 15.0k | return rhs.isStorageEqual(lhs); | 430 | 15.0k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 52.4k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 52.4k | return rhs.isStorageEqual(lhs); | 430 | 52.4k | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34TypeCheckObjCImplementationRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CheckRedeclarationRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 18.5k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 18.5k | return rhs.isStorageEqual(lhs); | 430 | 18.5k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE7isEqualERKS5_RKS6_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ApplyAccessNoteRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.45M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.45M | return rhs.isStorageEqual(lhs); | 430 | 1.45M | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18DefaultTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 491k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 491k | return rhs.isStorageEqual(lhs); | 430 | 491k | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckInvertible.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31HasNoncopyableAnnotationRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 24 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 24 | return rhs.isStorageEqual(lhs); | 430 | 24 | } |
TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CompilerPluginLoadRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 24 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 24 | return rhs.isStorageEqual(lhs); | 430 | 24 | } |
Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckPattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18PatternTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 157k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 157k | return rhs.isStorageEqual(lhs); | 430 | 157k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 691 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 691 | return rhs.isStorageEqual(lhs); | 430 | 691 | } |
TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 13.2k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 13.2k | return rhs.isStorageEqual(lhs); | 430 | 13.2k | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 87.9k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 87.9k | return rhs.isStorageEqual(lhs); | 430 | 87.9k | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperLValuenessRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 466 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 466 | return rhs.isStorageEqual(lhs); | 430 | 466 | } |
TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20ExpandAccessorMacrosEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 121k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 121k | return rhs.isStorageEqual(lhs); | 430 | 121k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26TypeCheckSourceFileRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 489 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 489 | return rhs.isStorageEqual(lhs); | 430 | 489 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49CheckInconsistentImplementationOnlyImportsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.72k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.72k | return rhs.isStorageEqual(lhs); | 430 | 1.72k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38CheckInconsistentSPIOnlyImportsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.10k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.10k | return rhs.isStorageEqual(lhs); | 430 | 2.10k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36CheckInconsistentAccessLevelOnImportEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.05k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.05k | return rhs.isStorageEqual(lhs); | 430 | 2.05k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41CheckInconsistentWeakLinkedImportsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.72k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.72k | return rhs.isStorageEqual(lhs); | 430 | 1.72k | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 32.5k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 32.5k | return rhs.isStorageEqual(lhs); | 430 | 32.5k | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ObjCInterfaceAndImplementationRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IDEInspectionSecondPassRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ParseRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEEvE7isEqualERKS5_RKS6_ ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 15 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 15 | return rhs.isStorageEqual(lhs); | 430 | 15 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 108 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 108 | return rhs.isStorageEqual(lhs); | 430 | 108 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30TypeEraserHasViableInitRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveTypeEraserTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ResolveRawLayoutLikeTypeRequestEvEEvE7isEqualERKS5_RKS6_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SpecializeAttrTargetDeclRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 12.9k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 12.9k | return rhs.isStorageEqual(lhs); | 430 | 12.9k | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36SerializeAttrGenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39DifferentiableAttributeTypeCheckRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 8.98k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 8.98k | return rhs.isStorageEqual(lhs); | 430 | 8.98k | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DerivativeAttrOriginalDeclRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 10.1k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 10.1k | return rhs.isStorageEqual(lhs); | 430 | 10.1k | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29ImplementsAttrProtocolRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 629 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 629 | return rhs.isStorageEqual(lhs); | 430 | 629 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38InitAccessorReferencedVariablesRequestEvEEvE7isEqualERKS5_RKS6_ Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33SemanticAvailableRangeAttrRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 3.38k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 3.38k | return rhs.isStorageEqual(lhs); | 430 | 3.38k | } |
Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30SemanticUnavailableAttrRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 963k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 963k | return rhs.isStorageEqual(lhs); | 430 | 963k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ExpandMemberAttributeMacrosEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 4.85M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 4.85M | return rhs.isStorageEqual(lhs); | 430 | 4.85M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.78M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.78M | return rhs.isStorageEqual(lhs); | 430 | 1.78M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.32k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.32k | return rhs.isStorageEqual(lhs); | 430 | 2.32k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 12.9M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 12.9M | return rhs.isStorageEqual(lhs); | 430 | 12.9M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ThrownTypeRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsAccessorTransparentRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 96 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 96 | return rhs.isStorageEqual(lhs); | 430 | 96 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericParamListRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.51M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.51M | return rhs.isStorageEqual(lhs); | 430 | 2.51M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ScopedImportLookupRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExtendedNominalRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 274 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 274 | return rhs.isStorageEqual(lhs); | 430 | 274 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31DefaultAndMaxAccessLevelRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 18 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 18 | return rhs.isStorageEqual(lhs); | 430 | 18 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 125k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 125k | return rhs.isStorageEqual(lhs); | 430 | 125k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26PatternBindingEntryRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30RequiresOpaqueAccessorsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 3.27k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 3.27k | return rhs.isStorageEqual(lhs); | 430 | 3.27k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36RequiresOpaqueModifyCoroutineRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 3.07k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 3.07k | return rhs.isStorageEqual(lhs); | 430 | 3.07k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25SynthesizeAccessorRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 39.6k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 39.6k | return rhs.isStorageEqual(lhs); | 430 | 39.6k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsGetterMutatingRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 5.38k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 5.38k | return rhs.isStorageEqual(lhs); | 430 | 5.38k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsSetterMutatingRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 5.78k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 5.78k | return rhs.isStorageEqual(lhs); | 430 | 5.78k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26OpaqueReadOwnershipRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 13.2k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 13.2k | return rhs.isStorageEqual(lhs); | 430 | 13.2k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 67.2k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 67.2k | return rhs.isStorageEqual(lhs); | 430 | 67.2k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 232k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 232k | return rhs.isStorageEqual(lhs); | 430 | 232k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 30 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 30 | return rhs.isStorageEqual(lhs); | 430 | 30 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13IsObjCRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 451k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 451k | return rhs.isStorageEqual(lhs); | 430 | 451k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsFinalRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.22k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.22k | return rhs.isStorageEqual(lhs); | 430 | 1.22k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsEscapableRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16IsDynamicRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 14.2k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 14.2k | return rhs.isStorageEqual(lhs); | 430 | 14.2k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30DynamicallyReplacedDeclRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.11M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.11M | return rhs.isStorageEqual(lhs); | 430 | 1.11M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36IsImplicitlyUnwrappedOptionalRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InterfaceTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 22.7M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 22.7M | return rhs.isStorageEqual(lhs); | 430 | 22.7M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18AccessLevelRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 309k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 309k | return rhs.isStorageEqual(lhs); | 430 | 309k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31HasNoncopyableAnnotationRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23StoredPropertiesRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 19.5M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 19.5M | return rhs.isStorageEqual(lhs); | 430 | 19.5M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29InitAccessorPropertiesRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 10.8k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 10.8k | return rhs.isStorageEqual(lhs); | 430 | 10.8k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31MemberwiseInitPropertiesRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 6.16k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 6.16k | return rhs.isStorageEqual(lhs); | 430 | 6.16k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40StoredPropertiesAndMissingMembersRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 17.7k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 17.7k | return rhs.isStorageEqual(lhs); | 430 | 17.7k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30PropertyWrapperTypeInfoRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 5.18k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 5.18k | return rhs.isStorageEqual(lhs); | 430 | 5.18k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsActorRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 5.49M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 5.49M | return rhs.isStorageEqual(lhs); | 430 | 5.49M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDistributedActorRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.50M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.50M | return rhs.isStorageEqual(lhs); | 430 | 1.50M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21UnderlyingTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 6.84k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 6.84k | return rhs.isStorageEqual(lhs); | 430 | 6.84k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21StructuralTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 143 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 143 | return rhs.isStorageEqual(lhs); | 430 | 143 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28DefaultDefinitionTypeRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18EnumRawTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 40.8k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 40.8k | return rhs.isStorageEqual(lhs); | 430 | 40.8k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24HasMemberwiseInitRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 5.94k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 5.94k | return rhs.isStorageEqual(lhs); | 430 | 5.94k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SynthesizeMemberwiseInitRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.80k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.80k | return rhs.isStorageEqual(lhs); | 430 | 2.80k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ResolveEffectiveMemberwiseInitRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 7.28k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 7.28k | return rhs.isStorageEqual(lhs); | 430 | 7.28k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21HasDefaultInitRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 5.13k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 5.13k | return rhs.isStorageEqual(lhs); | 430 | 5.13k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28SynthesizeDefaultInitRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 748 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 748 | return rhs.isStorageEqual(lhs); | 430 | 748 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GlobalActorInstanceRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 303 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 303 | return rhs.isStorageEqual(lhs); | 430 | 303 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20GetDestructorRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21IsDefaultActorRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 13.2k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 13.2k | return rhs.isStorageEqual(lhs); | 430 | 13.2k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39HasMissingDesignatedInitializersRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37InheritsSuperclassInitializersRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 48 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 48 | return rhs.isStorageEqual(lhs); | 430 | 48 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ClassAncestryFlagsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 51.1k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 51.1k | return rhs.isStorageEqual(lhs); | 430 | 51.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.17k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.17k | return rhs.isStorageEqual(lhs); | 430 | 2.17k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25InheritedProtocolsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 4.19k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 4.19k | return rhs.isStorageEqual(lhs); | 430 | 4.19k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolRequirementsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 3.92k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 3.92k | return rhs.isStorageEqual(lhs); | 430 | 3.92k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 3.13k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 3.13k | return rhs.isStorageEqual(lhs); | 430 | 3.13k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProtocolRequiresClassRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 71 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 71 | return rhs.isStorageEqual(lhs); | 430 | 71 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ExistentialConformsToSelfRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_42HasSelfOrAssociatedTypeRequirementsRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29PrimaryAssociatedTypesRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 20.1k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 20.1k | return rhs.isStorageEqual(lhs); | 430 | 20.1k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29StructuralRequirementsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.61k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.61k | return rhs.isStorageEqual(lhs); | 430 | 2.61k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeAliasRequirementsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.11k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.11k | return rhs.isStorageEqual(lhs); | 430 | 1.11k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolDependenciesRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 509k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 509k | return rhs.isStorageEqual(lhs); | 430 | 509k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27RequirementSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 25.6k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 25.6k | return rhs.isStorageEqual(lhs); | 430 | 25.6k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.78k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.78k | return rhs.isStorageEqual(lhs); | 430 | 1.78k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 4.31M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 4.31M | return rhs.isStorageEqual(lhs); | 430 | 4.31M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22StorageImplInfoRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 25.9k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 25.9k | return rhs.isStorageEqual(lhs); | 430 | 25.9k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24SetterAccessLevelRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasInitAccessorRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.00M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.00M | return rhs.isStorageEqual(lhs); | 430 | 1.00M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 312k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 312k | return rhs.isStorageEqual(lhs); | 430 | 312k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20NamingPatternRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.72k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.72k | return rhs.isStorageEqual(lhs); | 430 | 1.72k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParamSpecifierRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 51.7k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 51.7k | return rhs.isStorageEqual(lhs); | 430 | 51.7k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 10.8M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 10.8M | return rhs.isStorageEqual(lhs); | 430 | 10.8M | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34AttachedPropertyWrapperTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 4.49k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 4.49k | return rhs.isStorageEqual(lhs); | 430 | 4.49k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 4.54k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 4.54k | return rhs.isStorageEqual(lhs); | 430 | 4.54k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 376k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 376k | return rhs.isStorageEqual(lhs); | 430 | 376k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 110k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 110k | return rhs.isStorageEqual(lhs); | 430 | 110k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperMutabilityRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 191k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 191k | return rhs.isStorageEqual(lhs); | 430 | 191k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 42 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 42 | return rhs.isStorageEqual(lhs); | 430 | 42 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DefaultArgumentInitContextRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentExprRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 198 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 198 | return rhs.isStorageEqual(lhs); | 430 | 198 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentTypeRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResultBuilderTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 161k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 161k | return rhs.isStorageEqual(lhs); | 430 | 161k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AttachedResultBuilderRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 352k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 352k | return rhs.isStorageEqual(lhs); | 430 | 352k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ResultTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 641k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 641k | return rhs.isStorageEqual(lhs); | 430 | 641k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.94k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.94k | return rhs.isStorageEqual(lhs); | 430 | 2.94k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ParseAbstractFunctionBodyRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 809k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 809k | return rhs.isStorageEqual(lhs); | 430 | 809k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckFunctionBodyRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 21.4k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 21.4k | return rhs.isStorageEqual(lhs); | 430 | 21.4k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsFunctionBodySkippedRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26NeedsNewVTableEntryRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 17.0k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 17.0k | return rhs.isStorageEqual(lhs); | 430 | 17.0k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 14.0k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 14.0k | return rhs.isStorageEqual(lhs); | 430 | 14.0k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15IsStaticRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19SimpleDidSetRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SelfAccessKindRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20EnumRawValuesRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 181k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 181k | return rhs.isStorageEqual(lhs); | 430 | 181k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19BodyInitKindRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 10.6k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 10.6k | return rhs.isStorageEqual(lhs); | 430 | 10.6k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 28.0k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 28.0k | return rhs.isStorageEqual(lhs); | 430 | 28.0k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ActorIsolationRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 6.82M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 6.82M | return rhs.isStorageEqual(lhs); | 430 | 6.82M | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 35 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 35 | return rhs.isStorageEqual(lhs); | 430 | 35 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26FragileFunctionKindRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.06M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.06M | return rhs.isStorageEqual(lhs); | 430 | 1.06M | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.04M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.04M | return rhs.isStorageEqual(lhs); | 430 | 1.04M | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ABIMembersRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 53.9k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 53.9k | return rhs.isStorageEqual(lhs); | 430 | 53.9k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17AllMembersRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 67.6k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 67.6k | return rhs.isStorageEqual(lhs); | 430 | 67.6k | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_48GetDistributedActorArgumentDecodingMethodRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_43GetDistributedActorInvocationDecoderRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49GetDistributedRemoteCallTargetInitFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEEvE7isEqualERKS5_RKS6_ DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_50GetDistributedActorSystemRemoteCallFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 12 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 12 | return rhs.isStorageEqual(lhs); | 430 | 12 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetDistributedThunkRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40GetDistributedActorSystemPropertyRequestEvEEvE7isEqualERKS5_RKS6_ DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36GetDistributedActorIDPropertyRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 72 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 72 | return rhs.isStorageEqual(lhs); | 430 | 72 | } |
DocComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27SemanticBriefCommentRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 8.12k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 8.12k | return rhs.isStorageEqual(lhs); | 430 | 8.12k | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36PolymorphicEffectRequirementsRequestEvEEvE7isEqualERKS5_RKS6_ Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PolymorphicEffectKindRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 604k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 604k | return rhs.isStorageEqual(lhs); | 430 | 604k | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ConformanceHasEffectRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CallerSideDefaultArgExprRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS5_RKS6_ Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.51M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.51M | return rhs.isStorageEqual(lhs); | 430 | 2.51M | } |
GenericSignature.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 84.8k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 84.8k | return rhs.isStorageEqual(lhs); | 430 | 84.8k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22IsNonUserModuleRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 63 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 63 | return rhs.isStorageEqual(lhs); | 430 | 63 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleImplicitImportsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.76k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.76k | return rhs.isStorageEqual(lhs); | 430 | 1.76k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PrimarySourceFilesRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.40k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.40k | return rhs.isStorageEqual(lhs); | 430 | 1.40k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 20 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 20 | return rhs.isStorageEqual(lhs); | 430 | 20 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 3.91M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 3.91M | return rhs.isStorageEqual(lhs); | 430 | 3.91M | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39ImplicitKnownProtocolConformanceRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 79.8k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 79.8k | return rhs.isStorageEqual(lhs); | 430 | 79.8k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41GetDistributedActorImplicitCodableRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29HasImportsMatchingFlagRequestEvEEvE7isEqualERKS5_RKS6_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16SPIGroupsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 5.89M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 5.89M | return rhs.isStorageEqual(lhs); | 430 | 5.89M | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ModuleLibraryLevelRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.14k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.14k | return rhs.isStorageEqual(lhs); | 430 | 1.14k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ParseTopLevelDeclsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 123k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 123k | return rhs.isStorageEqual(lhs); | 430 | 123k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExportedSourceFileRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.23k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.23k | return rhs.isStorageEqual(lhs); | 430 | 1.23k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22GetSourceFileAsyncNodeEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 15.4k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 15.4k | return rhs.isStorageEqual(lhs); | 430 | 15.4k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 68.2k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 68.2k | return rhs.isStorageEqual(lhs); | 430 | 68.2k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE7isEqualERKS5_RKS6_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 346k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 346k | return rhs.isStorageEqual(lhs); | 430 | 346k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 120k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 120k | return rhs.isStorageEqual(lhs); | 430 | 120k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsCallAsFunctionNominalRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 506 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 506 | return rhs.isStorageEqual(lhs); | 430 | 506 | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38HasDynamicMemberLookupAttributeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 199k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 199k | return rhs.isStorageEqual(lhs); | 430 | 199k | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 759 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 759 | return rhs.isStorageEqual(lhs); | 430 | 759 | } |
OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LookupInfixOperatorRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 39.4k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 39.4k | return rhs.isStorageEqual(lhs); | 430 | 39.4k | } |
OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27LookupPrefixOperatorRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 18 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 18 | return rhs.isStorageEqual(lhs); | 430 | 18 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPostfixOperatorRequestEvEEvE7isEqualERKS5_RKS6_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPrecedenceGroupRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 13.3k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 13.3k | return rhs.isStorageEqual(lhs); | 430 | 13.3k | } |
Unexecuted instantiation: Pattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ExprPatternMatchRequestEvEEvE7isEqualERKS5_RKS6_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ConditionalRequirementsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.17M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.17M | return rhs.isStorageEqual(lhs); | 430 | 1.17M | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18TypeWitnessRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AssociatedConformanceRequestEvEEvE7isEqualERKS5_RKS6_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ValueWitnessRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.54k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.54k | return rhs.isStorageEqual(lhs); | 430 | 2.54k | } |
ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37LookupAllConformancesInContextRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 340k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 340k | return rhs.isStorageEqual(lhs); | 430 | 340k | } |
RawComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17RawCommentRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 51.3k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 51.3k | return rhs.isStorageEqual(lhs); | 430 | 51.3k | } |
Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IsSingleValueStmtRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 53.9k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 53.9k | return rhs.isStorageEqual(lhs); | 430 | 53.9k | } |
Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18BreakTargetRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.64k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.64k | return rhs.isStorageEqual(lhs); | 430 | 1.64k | } |
Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ContinueTargetRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 759 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 759 | return rhs.isStorageEqual(lhs); | 430 | 759 | } |
Unexecuted instantiation: Type.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20IsNoncopyableRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RequirementRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 94.7k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 94.7k | return rhs.isStorageEqual(lhs); | 430 | 94.7k | } |
TypeRefinementContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40ExpandChildTypeRefinementContextsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.08M | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.08M | return rhs.isStorageEqual(lhs); | 430 | 1.08M | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE7isEqualERKS5_RKS6_ |
431 | | }; |
432 | | |
433 | | } // end namespace llvm |
434 | | |
435 | | #endif // SWIFT_AST_REQUEST_CACHE_H |